Skip to content

Commit 20f0774

Browse files
committed
Revert "Use nextest as test runner"
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]>
1 parent 24e1e3c commit 20f0774

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

.github/workflows/msrv.yml

+2-5
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,6 @@ jobs:
3939
- name: Checkout sources
4040
uses: actions/[email protected]
4141

42-
- name: Install nextest
43-
uses: taiki-e/install-action@nextest
44-
4542
- name: Install toolchain
4643
uses: dtolnay/rust-toolchain@master
4744
with:
@@ -50,9 +47,9 @@ jobs:
5047
- name: Cache
5148
uses: Swatinem/rust-cache@v2
5249

53-
- name: Run cargo nextest
50+
- name: Run cargo test
5451
continue-on-error: ${{ matrix.rust == 'beta' }}
55-
run: cargo nextest run --all-features
52+
run: cargo test --all-features
5653

5754
fmt:
5855
needs: [check]

0 commit comments

Comments
 (0)