Closed dima74 closed 4 weeks ago
Currently some crates can't be tested individually, e.g.:
cargo test --package iroha_swarm
=>
Compiling iroha_config v2.0.0-rc.1.0 (/home/dima/soramitsu/fresh/iroha/crates/iroha_config) error[E0277]: `strum::ParseError` doesn't implement `std::fmt::Display` --> crates/iroha_config/src/kura.rs:17:5
This PR fixes it. I used the following commands to test it:
Running tests for individual crate is useful when running tests from the IDE, or when using env UPDATE_EXPECT=1
env UPDATE_EXPECT=1
Would be good to open a ticket to deal with this in ci
Currently some crates can't be tested individually, e.g.:
=>
This PR fixes it. I used the following commands to test it:
Running tests for individual crate is useful when running tests from the IDE, or when using
env UPDATE_EXPECT=1