Skip to content

Commit e8cea04

Browse files
committed
ignore flaky coverage here
1 parent 0b3952a commit e8cea04

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

hypothesis-python/RELEASE.rst

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
RELEASE_TYPE: patch
2+
3+
This patch contains some internal code cleanup. There is no user-visible change.

hypothesis-python/src/hypothesis/internal/conjecture/engine.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1112,7 +1112,7 @@ def generate_mutations_from(
11121112
(start1, end1), (start2, end2) = self.random.sample(sorted(group), 2)
11131113
if (start1 <= start2 <= end2 <= end1) or (
11141114
start2 <= start1 <= end1 <= end2
1115-
):
1115+
): # pragma: no cover # flaky on conjecture-cover tests
11161116
# one example entirely contains the other. give up.
11171117
# TODO use more intelligent mutation for containment, like
11181118
# replacing child with parent or vice versa. Would allow for

0 commit comments

Comments
 (0)