Merge pull request #396 from hirosystems/fix/mutants-dependency-binding

fix mutants: dependency binding error on Secp256k1
This commit is contained in:
ASuciuX
2025-02-10 18:19:35 +02:00
committed by GitHub

View File

@@ -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
@@ -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