Open
Description
Suppose I have two test targets:
- tests/tests1.rs
#[test]
fn test1() {
panic!()
}
#[test]
fn test2() {}
- tests/tests2.rs
#[test]
fn test1() {}
#[test]
fn test2() {
panic!()
}
I want to run only test1 from tests1 and test2 from tests2. The --exact
option doesn't help me in this case.
I want to have some option to run a specific test, like this:
cargo test --no-fail-fast --test tests1 --test tests2 -- --fqn tests1::test1 --fqn tests2::test2
Metadata
Metadata
Assignees
Labels
Type
Projects
Status
No status