From a258bff7018940b438e5de3fb846588454df4e4d Mon Sep 17 00:00:00 2001 From: Motoyuki Kimura Date: Fri, 7 Mar 2025 21:33:16 +0900 Subject: [PATCH] ci: enable printing in multi thread loom tests (#7200) --- .github/workflows/loom.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/loom.yml b/.github/workflows/loom.yml index b25f9ac5e..234b8bfd7 100644 --- a/.github/workflows/loom.yml +++ b/.github/workflows/loom.yml @@ -91,7 +91,7 @@ jobs: toolchain: ${{ env.rust_stable }} - uses: Swatinem/rust-cache@v2 - name: loom ${{ matrix.scope }} - run: cargo test --lib --release --features full -- $SCOPE + run: cargo test --lib --release --features full -- --nocapture $SCOPE working-directory: tokio env: SCOPE: ${{ matrix.scope }} @@ -116,7 +116,7 @@ jobs: toolchain: ${{ env.rust_stable }} - uses: Swatinem/rust-cache@v2 - name: loom ${{ matrix.scope }} - run: cargo test --lib --release --features full -- $SCOPE + run: cargo test --lib --release --features full -- --nocapture $SCOPE working-directory: tokio env: SCOPE: ${{ matrix.scope }}