diff --git a/.github/workflows/pr-pytests.yml b/.github/workflows/pr-pytests.yml index 228673d8..79cb4ae5 100644 --- a/.github/workflows/pr-pytests.yml +++ b/.github/workflows/pr-pytests.yml @@ -40,7 +40,7 @@ jobs: python -m venv .venv && source .venv/bin/activate && pip install pytest faker allure-pytest && - pip install --break-system-packages target/wheels/iroha-*.whl && + pip install --break-system-packages target/wheels/iroha2-*.whl && python -m pytest tests/" - name: Tear down the network run: cd iroha_daemon && scripts/test_env.py cleanup diff --git a/src/lib.rs b/src/lib.rs index 6f56ea34..6f63a0df 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -4,7 +4,7 @@ mod client; mod data_model; mod isi; -/// A Python module implemented in Rust. +/// The iroha2 python SDK module, implemented in Rust. #[pymodule] #[pyo3(name = "iroha2")] fn iroha2_python(py: Python, m: &PyModule) -> PyResult<()> {