From a8556bf2b804cb2a2a9d3e171d343cdc5a83d80f Mon Sep 17 00:00:00 2001 From: Tat Dat Duong Date: Mon, 30 Sep 2024 03:06:48 +0200 Subject: [PATCH] Uncomment back the conftest checkpointers --- libs/langgraph/tests/conftest.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/libs/langgraph/tests/conftest.py b/libs/langgraph/tests/conftest.py index 5e3de3097..34b450adb 100644 --- a/libs/langgraph/tests/conftest.py +++ b/libs/langgraph/tests/conftest.py @@ -224,17 +224,17 @@ async def awith_checkpointer( ALL_CHECKPOINTERS_SYNC = [ "memory", - # "sqlite", - # "postgres", - # "postgres_pipe", - # "postgres_pool", + "sqlite", + "postgres", + "postgres_pipe", + "postgres_pool", ] ALL_CHECKPOINTERS_ASYNC = [ "memory", - # "sqlite_aio", - # "postgres_aio", - # "postgres_aio_pipe", - # "postgres_aio_pool", + "sqlite_aio", + "postgres_aio", + "postgres_aio_pipe", + "postgres_aio_pool", ] ALL_CHECKPOINTERS_ASYNC_PLUS_NONE = [ *ALL_CHECKPOINTERS_ASYNC,