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.
--no-capture
1 parent 6c2cbe7 commit c37d889Copy full SHA for c37d889
1 file changed
.github/workflows/ci.yml
@@ -91,7 +91,7 @@ jobs:
91
run: cargo test --workspace --no-run
92
93
- name: Test
94
- run: cargo test --config "$GROUP_RUNNER" -- --nocapture
+ run: cargo test --config "$GROUP_RUNNER"
95
env:
96
GITHUB_TOKEN: ${{ github.token }}
97
@@ -104,13 +104,13 @@ jobs:
104
then
105
EI="$EI --test dogfood --test rustsec_advisories --test rustsec_issues --test snapbox_real_github"
106
fi
107
- cargo test --config "$GROUP_RUNNER" $EI -- --nocapture
+ cargo test --config "$GROUP_RUNNER" $EI
108
109
110
111
- name: Test `ci`
112
if: matrix.environment == 'ubuntu-latest'
113
- run: cargo test --config "$GROUP_RUNNER" -p ci -- --nocapture
+ run: cargo test --config "$GROUP_RUNNER" -p ci
114
115
all-checks:
116
needs: [test]
0 commit comments