From 63e7980b49790b2ef4ddaa9a3d50613de6502bff Mon Sep 17 00:00:00 2001 From: pentamassiv Date: Fri, 19 Apr 2024 01:10:46 +0200 Subject: [PATCH] CI: Don't capture the test output --- .github/workflows/CI.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 598c9d37..83df7e82 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -79,10 +79,10 @@ jobs: run: cargo check --release --examples --no-default-features ${{ matrix.features }} - name: Test the code - run: cargo test --no-default-features ${{ matrix.features }} + run: cargo test --no-default-features ${{ matrix.features }} -- --nocapture - name: Test the code in release mode - run: cargo test --release --no-default-features ${{ matrix.features }} + run: cargo test --release --no-default-features ${{ matrix.features }} -- --nocapture - name: Setup headless display for integration tests if: runner.os == 'Linux' # The integration tests only work on Linux right now