Avoid running with shallow checkpointer

This commit is contained in:
Tat Dat Duong
2025-03-19 14:22:24 +01:00
parent 68a5c3f4c7
commit 5bfb3bb882
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -7615,7 +7615,7 @@ def test_parallel_interrupts_double(
assert len(events) == 5
@pytest.mark.parametrize("checkpointer_name", ALL_CHECKPOINTERS_SYNC)
@pytest.mark.parametrize("checkpointer_name", REGULAR_CHECKPOINTERS_SYNC)
def test_bulk_state_updates(
request: pytest.FixtureRequest, checkpointer_name: str
) -> None:
+1 -1
View File
@@ -7840,7 +7840,7 @@ async def test_handles_multiple_interrupts_from_tasks() -> None:
assert result[1] == "Added Will!"
@pytest.mark.parametrize("checkpointer_name", ALL_CHECKPOINTERS_ASYNC)
@pytest.mark.parametrize("checkpointer_name", REGULAR_CHECKPOINTERS_ASYNC)
async def test_bulk_state_updates(
request: pytest.FixtureRequest, checkpointer_name: str
) -> None: