-
Running “cargo test” works fine.
-
I have a number of tests of the form
#[cfg(feature = "gpu")]
#[test]
pub fn ... {
...
}
- How do I run the above tests (that require feature gpu)? I have found https://github.com/rust-lang/cargo/issues/2911 … which seems to suggest that it is not possible to pass features?[