Skip to content

Commit d1ca992

Browse files
committed
Increase hypothesis test deadline
1 parent 65414a2 commit d1ca992

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

sunode/test_basic.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
import numpy as np
66
from pytest import raises
7-
from hypothesis import given
7+
from hypothesis import given, settings
88
import hypothesis.strategies as st
99
import hypothesis.extra.numpy as hnp
1010

@@ -14,6 +14,7 @@
1414
VEC_TYPES = ["serial"]
1515

1616

17+
@settings(deadline=500)
1718
@given(st.integers(), st.sampled_from(VEC_TYPES))
1819
def test_empty(size, kind):
1920
try:

0 commit comments

Comments
 (0)