We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3b1303 commit 82c1b31Copy full SHA for 82c1b31
crates/test-utils/src/lib.rs
@@ -389,7 +389,7 @@ fn main() {
389
/// also creates a file at `./target/.slow_tests_cookie` which serves as a flag
390
/// that slow tests did run.
391
pub fn skip_slow_tests() -> bool {
392
- let should_skip = std::env::var("RUN_SLOW_TESTS").is_err();
+ let should_skip = std::env::var("CI").is_err() && std::env::var("RUN_SLOW_TESTS").is_err();
393
if should_skip {
394
eprintln!("ignoring slow test");
395
} else {
0 commit comments