Skip to content

Commit 82c1b31

Browse files
committed
restore sth
1 parent e3b1303 commit 82c1b31

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/test-utils/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ fn main() {
389389
/// also creates a file at `./target/.slow_tests_cookie` which serves as a flag
390390
/// that slow tests did run.
391391
pub fn skip_slow_tests() -> bool {
392-
let should_skip = std::env::var("RUN_SLOW_TESTS").is_err();
392+
let should_skip = std::env::var("CI").is_err() && std::env::var("RUN_SLOW_TESTS").is_err();
393393
if should_skip {
394394
eprintln!("ignoring slow test");
395395
} else {

0 commit comments

Comments
 (0)