From 5b0463c3abf4822c5e8ece6a495440774ee8befe Mon Sep 17 00:00:00 2001 From: Martin Pool Date: Thu, 11 Jul 2024 21:37:21 -0700 Subject: [PATCH] Don't pass --profile to nextest run It means something different in nextest --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 0f4a5b11..6ed09d26 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -160,9 +160,9 @@ jobs: install cargo-mutants ~/.cargo/bin/ - name: Mutants in-diff # Normally this would have --in-place, but for the sake of exercising more cases, it does not. + # TODO: Pass --profile=mutants when supported run: > cargo mutants --no-shuffle -vV --in-diff git.diff --test-tool=${{matrix.test_tool}} --timeout=500 --build-timeout=500 - --cargo-arg=--profile=mutants - name: Archive mutants.out uses: actions/upload-artifact@v4 if: always()