Skip to content

Commit 8f2cafe

Browse files
authored
INTPYTHON-447 Fix skipped tests (#32)
1 parent 226bc86 commit 8f2cafe

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

libs/langgraph-checkpoint-mongodb/tests/integration_tests/test_pregel.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10635,7 +10635,6 @@ def side(state: State):
1063510635

1063610636

1063710637
@pytest.mark.parametrize("checkpointer_name", ALL_CHECKPOINTERS_SYNC)
10638-
@pytest.mark.skip("Test is flaky")
1063910638
def test_stream_subgraphs_during_execution(
1064010639
request: pytest.FixtureRequest, checkpointer_name: str
1064110640
) -> None:
@@ -12902,7 +12901,6 @@ def edit(state: JokeState):
1290212901

1290312902

1290412903
@pytest.mark.parametrize("checkpointer_name", ALL_CHECKPOINTERS_SYNC)
12905-
@pytest.mark.skip('Test is flaky')
1290612904
def test_weather_subgraph(
1290712905
request: pytest.FixtureRequest, checkpointer_name: str, snapshot: SnapshotAssertion
1290812906
) -> None:

libs/langgraph-checkpoint-mongodb/tests/integration_tests/test_pregel_async.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9423,6 +9423,7 @@ async def side(state: State):
94239423

94249424

94259425
@pytest.mark.parametrize("checkpointer_name", ALL_CHECKPOINTERS_ASYNC)
9426+
@pytest.mark.parametrize('Test is flaky')
94269427
async def test_stream_subgraphs_during_execution(checkpointer_name: str) -> None:
94279428
class InnerState(TypedDict):
94289429
my_key: Annotated[str, operator.add]
@@ -11630,6 +11631,7 @@ async def edit(state: JokeState):
1163011631
reason="Python 3.11+ is required for async contextvars support",
1163111632
)
1163211633
@pytest.mark.parametrize("checkpointer_name", ALL_CHECKPOINTERS_ASYNC)
11634+
@pytest.mark.skip('Test is flaky')
1163311635
async def test_weather_subgraph(
1163411636
checkpointer_name: str, snapshot: SnapshotAssertion
1163511637
) -> None:

0 commit comments

Comments
 (0)