Skip to content

Commit 2a3b8ad

Browse files
committed
Reduce proptest iterations
1 parent 7f6a981 commit 2a3b8ad

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

.github/workflows/ci.yml

+5
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ on:
99
env:
1010
CARGO_NET_RETRY: 10
1111
RUSTUP_MAX_RETRIES: 10
12+
PROPTEST_CASES: 64
1213

1314
jobs:
1415
rustfmt:
@@ -181,6 +182,8 @@ jobs:
181182
cross-tests:
182183
name: "${{ matrix.target_feature }} on ${{ matrix.target }} (via cross)"
183184
runs-on: ubuntu-latest
185+
env:
186+
PROPTEST_CASES: 16
184187
strategy:
185188
fail-fast: false
186189

@@ -247,6 +250,8 @@ jobs:
247250

248251
miri:
249252
runs-on: ubuntu-latest
253+
env:
254+
PROPTEST_CASES: 16
250255
steps:
251256
- uses: actions/checkout@v2
252257
- name: Test (Miri)

Cross.toml

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[build.env]
2+
passthrough = ["PROPTEST_CASES"]

0 commit comments

Comments
 (0)