Skip to content

Commit 435dd85

Browse files
aseyboldttwiecki
authored andcommitted
Speed up test_distributions
1 parent 7b9a81f commit 435dd85

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pymc3/tests/test_distributions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ def check_logp(self, model, value, domain, paramdomains, logp_reference, decimal
378378

379379
def check_int_to_1(self, model, value, domain, paramdomains):
380380
pdf = model.fastfn(exp(model.logpt))
381-
for pt in product(paramdomains, n_samples=100):
381+
for pt in product(paramdomains, n_samples=10):
382382
pt = Point(pt, value=value.tag.test_value, model=model)
383383
bij = DictToVarBijection(value, (), pt)
384384
pdfx = bij.mapf(pdf)

0 commit comments

Comments
 (0)