Skip to content

Commit 2930fb2

Browse files
committed
Fix CI
1 parent 8026a79 commit 2930fb2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,7 @@ def begin(self):
379379
self.starts = IntList.of_length(len(self.examples))
380380
self.ends = IntList.of_length(len(self.examples))
381381

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

385385
def stop_example(self, i: int, *, discarded: bool) -> None:

hypothesis-python/tests/ghostwriter/test_ghostwriter_cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def run(cmd, *, cwd=None):
5555
pytest.param(
5656
"hypothesis.strategies",
5757
lambda: magic(st),
58-
marks=pytest.mark.skipif(sys.version_info[:2] != (3, 10)),
58+
marks=pytest.mark.skipif(sys.version_info[:2] != (3, 10), reason="varies"),
5959
),
6060
# We can write tests for classes even without classmethods or staticmethods
6161
("hypothesis.errors.StopTest", lambda: fuzz(StopTest)),

0 commit comments

Comments
 (0)