Skip to content

Commit 9f9e194

Browse files
committed
chore(testing): configure mutants to use nextest
1 parent 54498a0 commit 9f9e194

2 files changed

Lines changed: 8 additions & 3 deletions

File tree

.cargo/mutants.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
exclude_globs = [
2+
"src/passes/codegen.rs" # Until LLVM snapshot tests are implemented.
3+
]
4+
5+
test_tool = "nextest"

.github/workflows/ci.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
llvm-version: ${{ env.LLVM_VERSION }}
2424
llvm-path: ${{ env.LLVM_PATH }}
2525

26-
- name: Install cargo-llvm-cov and cargo-nextest
26+
- name: Install cargo-llvm-cov and nextest
2727
uses: taiki-e/install-action@v2
2828
with:
2929
tool: cargo-llvm-cov,nextest
@@ -88,10 +88,10 @@ jobs:
8888
llvm-version: ${{ env.LLVM_VERSION }}
8989
llvm-path: ${{ env.LLVM_PATH }}
9090

91-
- name: Install cargo-mutants
91+
- name: Install cargo-mutants and nextest
9292
uses: taiki-e/install-action@v2
9393
with:
94-
tool: cargo-mutants
94+
tool: cargo-mutants,nextest
9595

9696
- run: cargo mutants -vV --in-place
9797

0 commit comments

Comments
 (0)