From 88a3b4d4c83f4b3ed74208e0d9dc5dd0e890a73b Mon Sep 17 00:00:00 2001 From: ASuciuX Date: Wed, 5 Feb 2025 15:58:05 +0200 Subject: [PATCH 1/2] fix mutants: dependency binding error on Secp256k1 --- .github/workflows/pr-mutants.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr-mutants.yml b/.github/workflows/pr-mutants.yml index a41120a..3df5161 100644 --- a/.github/workflows/pr-mutants.yml +++ b/.github/workflows/pr-mutants.yml @@ -108,7 +108,7 @@ jobs: # Disable immediate exit on error set +e - cargo mutants --workspace --timeout-multiplier 1.5 --no-shuffle -vV --in-diff git.diff --output ./ --test-tool=nextest -- --all-targets --test-threads 1 + cargo mutants --workspace --in-place --timeout-multiplier 1.5 --no-shuffle -vV --in-diff git.diff --output ./ --test-tool=nextest -- --all-targets --test-threads 1 exit_code=$? # Create the folder only containing the outcomes (.txt files) and make a file containing the exit code of the command From dbc54e4e988fe84f8f7c2a25b0341b1dc492f930 Mon Sep 17 00:00:00 2001 From: ASuciuX Date: Fri, 7 Feb 2025 13:31:35 +0200 Subject: [PATCH 2/2] update mutants version --- .github/workflows/pr-mutants.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr-mutants.yml b/.github/workflows/pr-mutants.yml index 3df5161..2eba9a9 100644 --- a/.github/workflows/pr-mutants.yml +++ b/.github/workflows/pr-mutants.yml @@ -40,7 +40,7 @@ jobs: - name: Install cargo-mutants id: install_cargo_mutants run: | - cargo install --version 24.11.2 cargo-mutants --locked # v24.11.2 + cargo install --version 25.0.0 cargo-mutants --locked - name: Install cargo-nextest id: install_cargo_nextest