We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c15c11 commit eef7d84Copy full SHA for eef7d84
tests/unit_tests/scheduler_test.py
@@ -64,6 +64,7 @@ def test_recurring_single_call():
64
mock.assert_called_once()
65
66
67
+@pytest.mark.skip(reason="Test runs in Thread-1 (not MainThread) but still blocks")
68
def test_recurring_thread():
69
def job(modifiable_arg: Dict):
70
# Modify the variable, which should be shared with the main thread.
@@ -103,6 +104,7 @@ def job(modifiable_arg: Dict):
103
104
assert test_dict == {"count": 3}
105
106
107
108
def test_recurring_subprocess():
109
def job(path: str, modifiable_arg: Dict):
110
path = Path(path)
0 commit comments