Skip to content

Commit

Permalink
Try again: set RUST_BACKTRACE=1 in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
sk1p committed Jul 24, 2024
1 parent d81e476 commit 5d2b484
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ on:
- 'v[0-9]*'
pull_request:

env:
RUST_BACKTRACE: 1

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
Expand Down Expand Up @@ -55,7 +58,7 @@ jobs:
with:
python-version: '3.10'
- run: python3 -m pip install numpy
- run: RUST_BACKTRACE=1 cargo test
- run: cargo test
working-directory: ${{ matrix.crate }}

windows:
Expand Down Expand Up @@ -116,7 +119,7 @@ jobs:
with:
python-version: '3.10'
- run: python3 -m pip install numpy
- run: RUST_BACKTRACE=1 cargo test
- run: cargo test
working-directory: ${{ matrix.crate }}

macos-test:
Expand All @@ -141,7 +144,7 @@ jobs:
with:
python-version: '3.10'
- run: python3 -m pip install numpy
- run: RUST_BACKTRACE=1 cargo test
- run: cargo test
working-directory: ${{ matrix.crate }}

macos:
Expand Down

0 comments on commit 5d2b484

Please sign in to comment.