Skip to content

Commit

Permalink
Revert "Use nextest as test runner"
Browse files Browse the repository at this point in the history
The nextest runner does not help enough to be viable. Installing it
takes more time than the runner saves, so go back to the normal test
runner with this patch.

This reverts commit 284de85.
Signed-off-by: Matthias Beyer <[email protected]>
  • Loading branch information
matthiasbeyer committed Feb 1, 2024
1 parent 24e1e3c commit 20f0774
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/msrv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,6 @@ jobs:
- name: Checkout sources
uses: actions/[email protected]

- name: Install nextest
uses: taiki-e/install-action@nextest

- name: Install toolchain
uses: dtolnay/rust-toolchain@master
with:
Expand All @@ -50,9 +47,9 @@ jobs:
- name: Cache
uses: Swatinem/rust-cache@v2

- name: Run cargo nextest
- name: Run cargo test
continue-on-error: ${{ matrix.rust == 'beta' }}
run: cargo nextest run --all-features
run: cargo test --all-features

fmt:
needs: [check]
Expand Down

0 comments on commit 20f0774

Please sign in to comment.