### Problem When running `cargo test xyz`, cargo ignores all test flags in the `cargo.toml` file. ### Steps 1. create project `cargo init xyz` 2. add `#[test] fn random{}` to your `main.rs` 3. add the following to your `Cargo.toml` ```rust [[bin]] name = "main" path = "src/main.rs" test = false ``` 4. type `cargo test` and then type `cargo test xyz` Result:  ### Possible Solution(s) _No response_ ### Notes _No response_ ### Version ```text cargo 1.59.0-nightly (358e79fe5 2022-01-04) ```