Reduce proptest iterations
This commit is contained in:
parent
7f6a981b26
commit
2a3b8ad223
2 changed files with 7 additions and 0 deletions
5
.github/workflows/ci.yml
vendored
5
.github/workflows/ci.yml
vendored
|
|
@ -9,6 +9,7 @@ on:
|
|||
env:
|
||||
CARGO_NET_RETRY: 10
|
||||
RUSTUP_MAX_RETRIES: 10
|
||||
PROPTEST_CASES: 64
|
||||
|
||||
jobs:
|
||||
rustfmt:
|
||||
|
|
@ -181,6 +182,8 @@ jobs:
|
|||
cross-tests:
|
||||
name: "${{ matrix.target_feature }} on ${{ matrix.target }} (via cross)"
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
PROPTEST_CASES: 16
|
||||
strategy:
|
||||
fail-fast: false
|
||||
|
||||
|
|
@ -247,6 +250,8 @@ jobs:
|
|||
|
||||
miri:
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
PROPTEST_CASES: 16
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Test (Miri)
|
||||
|
|
|
|||
2
Cross.toml
Normal file
2
Cross.toml
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
[build.env]
|
||||
passthrough = ["PROPTEST_CASES"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue