Skip to content

Set RUST_BACKTRACE for windows to try and get more info #676

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

Closed
wants to merge 4 commits into from
Closed
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
9 changes: 8 additions & 1 deletion .github/workflows/test-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ jobs:
- name: Report Rust Toolchain
run: rustup show

- name: Install cargo nextest
uses: taiki-e/install-action@v2
with:
tool: cargo-nextest

- name: Rust Cache
uses: Swatinem/rust-cache@v2

Expand All @@ -46,4 +51,6 @@ jobs:
- name: Run Unit Tests
# Very loud on windows CI, which has been a source of instability
run: |
cargo test -vv -- --nocapture
cargo nextest run --no-fail-fast --no-capture --cargo-verbose --cargo-verbose
env:
RUST_BACKTRACE: 1
Loading