Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ test = [
"pytest",
"cloudpickle>=2.2.0",
"dill>=0.3.5.1",
"pytest-rerunfailures",
]
dev = [
"isolate[test]",
Expand Down
4 changes: 2 additions & 2 deletions tests/test_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,7 @@ def test_bridge_connection_reuse(
assert fourth_process_pid == third_process_pid


@pytest.mark.flaky(reruns=3)
@pytest.mark.flaky(max_runs=3)
def test_bridge_connection_reuse_logs(
stub: definitions.IsolateStub, monkeypatch: Any
) -> None:
Expand Down Expand Up @@ -514,7 +514,7 @@ def print_logs_no_delay(num_lines, should_flush):

@pytest.mark.parametrize("num_lines", [0, 1, 10, 100, 1000])
@pytest.mark.parametrize("should_flush", [True, False])
@pytest.mark.flaky(reruns=3)
@pytest.mark.flaky(max_runs=3)
def test_receive_complete_logs(
stub: definitions.IsolateStub,
monkeypatch: Any,
Expand Down