Skip to content

Commit

Permalink
Prep for 0.1.0 release of langgraph-checkpoint-mongodb (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
blink1073 authored Dec 11, 2024
1 parent 1e42877 commit 58589fe
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion libs/langgraph-checkpoint-mongodb/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "langgraph-checkpoint-mongodb"
version = "0.1.0a3"
version = "0.1.0"
description = "Library with a MongoDB implementation of LangGraph checkpoint saver."
authors = []
license = "MIT"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6619,7 +6619,7 @@ def tools_node(input: ToolCall, config: RunnableConfig) -> AgentState:


@pytest.mark.parametrize("checkpointer_name", ALL_CHECKPOINTERS_SYNC)
@pytest.mark.skip('Interrupt does not work with transactions')
@pytest.mark.skip("Interrupt does not work with transactions")
def test_message_graph(
snapshot: SnapshotAssertion,
deterministic_uuids: MockerFixture,
Expand Down Expand Up @@ -7360,7 +7360,7 @@ def should_continue(messages):


@pytest.mark.parametrize("checkpointer_name", ALL_CHECKPOINTERS_SYNC)
@pytest.mark.skip('Interrupt does not work with transactions')
@pytest.mark.skip("Interrupt does not work with transactions")
def test_root_graph(
deterministic_uuids: MockerFixture,
request: pytest.FixtureRequest,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9425,7 +9425,7 @@ async def side(state: State):


@pytest.mark.parametrize("checkpointer_name", ALL_CHECKPOINTERS_ASYNC)
@pytest.mark.skip('Test is flaky')
@pytest.mark.skip("Test is flaky")
async def test_stream_subgraphs_during_execution(checkpointer_name: str) -> None:
class InnerState(TypedDict):
my_key: Annotated[str, operator.add]
Expand Down Expand Up @@ -11633,7 +11633,7 @@ async def edit(state: JokeState):
reason="Python 3.11+ is required for async contextvars support",
)
@pytest.mark.parametrize("checkpointer_name", ALL_CHECKPOINTERS_ASYNC)
@pytest.mark.skip('Test is flaky')
@pytest.mark.skip("Test is flaky")
async def test_weather_subgraph(
checkpointer_name: str, snapshot: SnapshotAssertion
) -> None:
Expand Down

0 comments on commit 58589fe

Please sign in to comment.