Skip to content

Commit c37d889

Browse files
committed
Eliminate --no-capture
1 parent 6c2cbe7 commit c37d889

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ jobs:
9191
run: cargo test --workspace --no-run
9292

9393
- name: Test
94-
run: cargo test --config "$GROUP_RUNNER" -- --nocapture
94+
run: cargo test --config "$GROUP_RUNNER"
9595
env:
9696
GITHUB_TOKEN: ${{ github.token }}
9797

@@ -104,13 +104,13 @@ jobs:
104104
then
105105
EI="$EI --test dogfood --test rustsec_advisories --test rustsec_issues --test snapbox_real_github"
106106
fi
107-
cargo test --config "$GROUP_RUNNER" $EI -- --nocapture
107+
cargo test --config "$GROUP_RUNNER" $EI
108108
env:
109109
GITHUB_TOKEN: ${{ github.token }}
110110

111111
- name: Test `ci`
112112
if: matrix.environment == 'ubuntu-latest'
113-
run: cargo test --config "$GROUP_RUNNER" -p ci -- --nocapture
113+
run: cargo test --config "$GROUP_RUNNER" -p ci
114114

115115
all-checks:
116116
needs: [test]

0 commit comments

Comments
 (0)