ci: enable printing in multi thread loom tests (#7200)

This commit is contained in:
Motoyuki Kimura
2025-03-07 13:33:16 +01:00
committed by GitHub
parent e076d21f67
commit a258bff701
+2 -2
View File
@@ -91,7 +91,7 @@ jobs:
toolchain: ${{ env.rust_stable }} toolchain: ${{ env.rust_stable }}
- uses: Swatinem/rust-cache@v2 - uses: Swatinem/rust-cache@v2
- name: loom ${{ matrix.scope }} - name: loom ${{ matrix.scope }}
run: cargo test --lib --release --features full -- $SCOPE run: cargo test --lib --release --features full -- --nocapture $SCOPE
working-directory: tokio working-directory: tokio
env: env:
SCOPE: ${{ matrix.scope }} SCOPE: ${{ matrix.scope }}
@@ -116,7 +116,7 @@ jobs:
toolchain: ${{ env.rust_stable }} toolchain: ${{ env.rust_stable }}
- uses: Swatinem/rust-cache@v2 - uses: Swatinem/rust-cache@v2
- name: loom ${{ matrix.scope }} - name: loom ${{ matrix.scope }}
run: cargo test --lib --release --features full -- $SCOPE run: cargo test --lib --release --features full -- --nocapture $SCOPE
working-directory: tokio working-directory: tokio
env: env:
SCOPE: ${{ matrix.scope }} SCOPE: ${{ matrix.scope }}