You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here are some potential issues that don't seem to enable running the tests anyway:
Adding testing = [] to Cargo.toml
Renaming mod test to mod tests.
Adding unit tests to different crates of the miden-vm package also results in tests not getting run by make test.
I'm able to run the tests (when run some of the tests fail):
cargo test --package miden-vm --bin miden --features executable -- --show-output
Should this be fixed by adding "executable" feature to make test, because it looks like the tests are skipped because the required-features in miden/Cargo.toml file lists "executable" in the [[bin]] section?
The text was updated successfully, but these errors were encountered:
When running
make test
unit tests in themiden-vm
package are not running.For example:
miden-vm/miden/src/tools/mod.rs
Line 289 in fbce798
miden-vm/miden/src/cli/data.rs
Line 553 in fbce798
Here are some potential issues that don't seem to enable running the tests anyway:
testing = []
toCargo.toml
mod test
tomod tests
.Adding unit tests to different crates of the
miden-vm
package also results in tests not getting run bymake test
.I'm able to run the tests (when run some of the tests fail):
cargo test --package miden-vm --bin miden --features executable -- --show-output
Should this be fixed by adding "executable" feature to
make test
, because it looks like the tests are skipped because therequired-features
inmiden/Cargo.toml
file lists "executable" in the[[bin]]
section?The text was updated successfully, but these errors were encountered: