Skip to content

Commit

Permalink
TEMP: collection-time workaround
Browse files Browse the repository at this point in the history
  • Loading branch information
Zac-HD committed Jul 13, 2024
1 parent 58c479e commit 018ccab
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions hypothesis-python/tests/cover/test_type_lookup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,7 @@
import pytest

from hypothesis import given, infer, settings, strategies as st
from hypothesis.errors import (
HypothesisDeprecationWarning,
InvalidArgument,
ResolutionFailed,
)
from hypothesis.errors import InvalidArgument, ResolutionFailed
from hypothesis.internal.compat import get_type_hints
from hypothesis.internal.reflection import get_pretty_function_description
from hypothesis.strategies._internal import types
Expand Down Expand Up @@ -70,7 +66,7 @@
ex = find_any(thing(*([st.nothing()] * n)))
types_with_core_strat.add(type(ex))
break
except (TypeError, InvalidArgument, HypothesisDeprecationWarning):
except Exception:
continue


Expand Down

0 comments on commit 018ccab

Please sign in to comment.