Skip to content

Commit

Permalink
ignore flaky coverage here
Browse files Browse the repository at this point in the history
  • Loading branch information
Zac-HD committed Aug 24, 2024
1 parent 0b3952a commit e8cea04
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions hypothesis-python/RELEASE.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
RELEASE_TYPE: patch

This patch contains some internal code cleanup. There is no user-visible change.
Original file line number Diff line number Diff line change
Expand Up @@ -1112,7 +1112,7 @@ def generate_mutations_from(
(start1, end1), (start2, end2) = self.random.sample(sorted(group), 2)
if (start1 <= start2 <= end2 <= end1) or (
start2 <= start1 <= end1 <= end2
):
): # pragma: no cover # flaky on conjecture-cover tests
# one example entirely contains the other. give up.
# TODO use more intelligent mutation for containment, like
# replacing child with parent or vice versa. Would allow for
Expand Down

0 comments on commit e8cea04

Please sign in to comment.