Skip to content

Commit

Permalink
Increase hypothesis test deadline
Browse files Browse the repository at this point in the history
  • Loading branch information
aseyboldt committed Apr 12, 2021
1 parent 65414a2 commit d1ca992
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion sunode/test_basic.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import numpy as np
from pytest import raises
from hypothesis import given
from hypothesis import given, settings
import hypothesis.strategies as st
import hypothesis.extra.numpy as hnp

Expand All @@ -14,6 +14,7 @@
VEC_TYPES = ["serial"]


@settings(deadline=500)
@given(st.integers(), st.sampled_from(VEC_TYPES))
def test_empty(size, kind):
try:
Expand Down

0 comments on commit d1ca992

Please sign in to comment.