Skip to content

Commit

Permalink
CI: Don't capture the test output
Browse files Browse the repository at this point in the history
  • Loading branch information
pentamassiv committed Apr 18, 2024
1 parent 9739736 commit 4e5eb24
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 4e5eb24

Please sign in to comment.