Skip to content

Commit

Permalink
test(fix): reduce max examples on slow test
Browse files Browse the repository at this point in the history
  • Loading branch information
iamdefinitelyahuman committed Jun 12, 2021
1 parent ff5691d commit 1ba3ac5
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/integration/FeeDistributor/test_checkpoint_ts.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import pytest
from brownie.test import given, strategy
from hypothesis import settings

WEEK = 86400 * 7

Expand All @@ -20,6 +21,7 @@ def distributor(accounts, chain, fee_distributor, voting_escrow, token):
st_locktime=strategy("uint256[10]", min_value=1, max_value=52, unique=True),
st_sleep=strategy("uint256[10]", min_value=1, max_value=30, unique=True),
)
@settings(max_examples=10)
def test_checkpoint_total_supply(
accounts, chain, distributor, voting_escrow, st_amount, st_locktime, st_sleep
):
Expand Down

0 comments on commit 1ba3ac5

Please sign in to comment.