Skip to content

Remove --nocapture test argument on CI #1592

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 24, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -225,12 +225,12 @@ jobs:
- run: cargo run -p run-examples

# Build and test all features except for lightbeam
- run: cargo test --features test-programs/test_programs --all --exclude lightbeam -- --nocapture
- run: cargo test --features test-programs/test_programs --all --exclude lightbeam
env:
RUST_BACKTRACE: 1

# Test debug (DWARF) related functionality.
- run: cargo test test_debug_dwarf_ -- --ignored --nocapture --test-threads 1
- run: cargo test test_debug_dwarf_ -- --ignored --test-threads 1
if: matrix.os == 'ubuntu-latest'
env:
RUST_BACKTRACE: 1
Expand All @@ -239,7 +239,7 @@ jobs:
# Lightbeam tests fail right now, but we don't want to block on that.
- run: cargo build --package lightbeam
if: matrix.rust == 'nightly'
- run: cargo test --package lightbeam -- --nocapture
- run: cargo test --package lightbeam
if: matrix.rust == 'nightly'
continue-on-error: true
env:
Expand Down