Skip to content

Commit

Permalink
use nextest
Browse files Browse the repository at this point in the history
  • Loading branch information
rob-maron committed Nov 14, 2024
1 parent ce63e89 commit 898a6f3
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,12 @@ jobs:
- name: Clippy
run: cargo clippy --workspace --all-features --all-targets -- -D warnings

- name: Install nextest
run: cargo install cargo-nextest

- name: Test
run: |
cargo test --workspace --release --all-features --no-run
cargo test --workspace --release --all-features --verbose -- --test-threads 2
cargo nextest run --workspace --release --all-features --verbose --nocapture
timeout-minutes: 60

- name: Generate Documentation
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/build_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,10 @@ jobs:
run: |
cargo build --workspace --release
- name: Install nextest
run: cargo install cargo-nextest

- name: Test
run: |
cargo test --workspace --release --all-features --no-run
cargo test --workspace --release --all-features --verbose -- --nocapture --test-threads 2
cargo nextest run --workspace --release --all-features --verbose --nocapture
timeout-minutes: 60
6 changes: 4 additions & 2 deletions .github/workflows/debug_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,10 @@ jobs:
run: |
cargo build --workspace --all-features
- name: Install nextest
run: cargo install cargo-nextest

- name: Test
run: |
cargo test --workspace --all-features --no-run
cargo test --workspace --all-features --verbose -- --test-threads 2
cargo nextest run --workspace --all-features --verbose --nocapture
timeout-minutes: 60

0 comments on commit 898a6f3

Please sign in to comment.