Skip to content
This repository was archived by the owner on Apr 28, 2025. It is now read-only.

Commit 8ece7f7

Browse files
committed
REVERT ME don't capture test ouptut to debug CI
1 parent 93c07ca commit 8ece7f7

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

ci/run.sh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -72,15 +72,15 @@ else
7272
cmd="cargo test --all --target $target $extra_flags"
7373

7474
# stable by default
75-
$cmd
76-
$cmd --release
75+
$cmd -- --nocapture
76+
$cmd --release -- --nocapture
7777

7878
# unstable with a feature
79-
$cmd --features "unstable-intrinsics"
80-
$cmd --release --features "unstable-intrinsics"
79+
$cmd --features "unstable-intrinsics" -- --nocapture
80+
$cmd --release --features "unstable-intrinsics" -- --nocapture
8181

8282
# Make sure benchmarks have correct results
83-
$cmd --benches
84-
$cmd --benches --release
83+
$cmd --benches -- --nocapture
84+
$cmd --benches --release -- --nocapture
8585
fi
8686

0 commit comments

Comments
 (0)