We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ad351b commit aad4098Copy full SHA for aad4098
1 file changed
hypothesis-python/tests/cover/test_targeting.py
@@ -102,21 +102,3 @@ def test_cannot_target_default_label_twice(_):
102
target(0.0)
103
with pytest.raises(InvalidArgument):
104
target(1.0)
105
-
106
107
-@given(st.lists(st.integers()), st.none())
108
-def test_targeting_with_following_empty(ls, n):
109
- # This exercises some logic in the optimiser that prevents it from trying
110
- # to mutate empty examples at the end of the test case.
111
- target(float(len(ls)))
112
113
114
-@given(
115
- st.tuples(
116
- *([st.none()] * 10 + [st.integers()] + [st.none()] * 10 + [st.integers()])
117
- )
118
-)
119
-def test_targeting_with_many_empty(_):
120
121
- # to mutate empty examples in the middle of the test case.
122
- target(1.0)
0 commit comments