Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Zac-HD committed Aug 20, 2023
1 parent 8026a79 commit 2930fb2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -379,7 +379,7 @@ def begin(self):
self.starts = IntList.of_length(len(self.examples))
self.ends = IntList.of_length(len(self.examples))

def start_example(self, i: int, *, label_index: int) -> None:
def start_example(self, i: int, label_index: int) -> None:
self.starts[i] = self.bytes_read

def stop_example(self, i: int, *, discarded: bool) -> None:
Expand Down
Expand Up @@ -55,7 +55,7 @@ def run(cmd, *, cwd=None):
pytest.param(
"hypothesis.strategies",
lambda: magic(st),
marks=pytest.mark.skipif(sys.version_info[:2] != (3, 10)),
marks=pytest.mark.skipif(sys.version_info[:2] != (3, 10), reason="varies"),
),
# We can write tests for classes even without classmethods or staticmethods
("hypothesis.errors.StopTest", lambda: fuzz(StopTest)),
Expand Down

0 comments on commit 2930fb2

Please sign in to comment.