Skip to content

Commit d19d0e7

Browse files
committed
Again
1 parent 2219c42 commit d19d0e7

File tree

3 files changed

+4
-0
lines changed

3 files changed

+4
-0
lines changed

tests/test_debugger.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ def kernel_with_debug(kernel):
7474
wait_for_debug_request(kernel, "disconnect", {"restart": False, "terminateDebuggee": True})
7575

7676

77+
@flaky(max_runs=3)
7778
def test_debug_initialize(kernel):
7879
reply = wait_for_debug_request(
7980
kernel,

tests/test_eventloop.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ def _setup_env():
5858
windows_skip = pytest.mark.skipif(os.name == "nt", reason="causing failures on windows")
5959

6060

61+
@flaky(max_runs=3)
6162
@windows_skip
6263
@pytest.mark.skipif(sys.platform == "darwin", reason="hangs on macos")
6364
def test_tk_loop(kernel):
@@ -79,6 +80,7 @@ def do_thing():
7980
t.join()
8081

8182

83+
@flaky(max_runs=3)
8284
@windows_skip
8385
@pytest.mark.parametrize("anyio_backend", ["asyncio"])
8486
def test_asyncio_loop(kernel):

tests/test_subshells.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ def test_supported():
8484
assert "kernel subshells" in reply["content"]["supported_features"]
8585

8686

87+
@flaky(max_runs=3)
8788
def test_subshell_id_lifetime():
8889
with new_kernel() as kc:
8990
assert list_subshell_helper(kc)["subshell_id"] == []

0 commit comments

Comments
 (0)