Skip to content

Commit

Permalink
further weaken distribution test
Browse files Browse the repository at this point in the history
  • Loading branch information
dfremont committed Jun 30, 2023
1 parent 9ed095c commit 88dcce5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/core/test_distributions.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def test_support_operators():
def similarDistributions(pytestconfig):
samples = 3000 if pytestconfig.getoption("--fast") else 100000

def checker(d1, d2, p=1e-4):
def checker(d1, d2, p=1e-5):
s1 = [d1.sample() for i in range(samples)]
s2 = [d2.sample() for i in range(samples)]
with warnings.catch_warnings():
Expand Down

0 comments on commit 88dcce5

Please sign in to comment.