Skip to content

Commit

Permalink
limit quickcheck threads to 1
Browse files Browse the repository at this point in the history
  • Loading branch information
rarescosma committed Oct 1, 2024
1 parent fd7b019 commit d3e9224
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ci:
#!/usr/bin/env bash
export CARGO_PROFILE_RELEASE_LTO=false
cargo clippy --locked -- -D warnings
QUICKCHECK_TESTS="$((2**18))" RUST_LOG=quickcheck cargo test -- --nocapture
QUICKCHECK_TESTS="$((2**18))" RUST_LOG=quickcheck cargo test -- --nocapture --test-threads=1
release type=DEFAULT_RELEASE:
#!/usr/bin/env bash
Expand Down

0 comments on commit d3e9224

Please sign in to comment.