Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/pr-pytests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<()> {
Expand Down
Loading