Skip to content

Commit 1c1383c

Browse files
committed
Don't shrink if not tty
1 parent 4be99b2 commit 1c1383c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/testsuite/resolve.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ proptest! {
3232
// and locally.
3333
cases: 256,
3434
max_shrink_iters:
35-
if env::var("CI").is_ok() {
35+
if env::var("CI").is_ok() || !atty::is(atty::Stream::Stderr) {
3636
// This attempts to make sure that CI will fail fast,
3737
0
3838
} else {

0 commit comments

Comments
 (0)