We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0580666 commit 9903ffaCopy full SHA for 9903ffa
libs/langgraph-checkpoint-aws/tests/unit_tests/agentcore/test_saver.py
@@ -32,14 +32,14 @@
32
)
33
from langgraph_checkpoint_aws.agentcore.saver import AgentCoreMemorySaver
34
35
-# Configure pytest to use anyio for async tests (asyncio backend only)
+# Configure pytest to use anyio for async tests
36
pytestmark = pytest.mark.anyio
37
38
# Test constants for async testing
39
-N_ASYNC_CALLS = 10
40
-MOCK_SLEEP_DURATION = 0.5 / N_ASYNC_CALLS
41
-OVERHEAD_RUNNER_TIME = 0.05
42
-TOTAL_EXPECTED_TIME = MOCK_SLEEP_DURATION + OVERHEAD_RUNNER_TIME
+N_ASYNC_CALLS = 5
+MOCK_SLEEP_DURATION = 0.1 / N_ASYNC_CALLS
+OVERHEAD_DURATION = 0.01
+TOTAL_EXPECTED_TIME = MOCK_SLEEP_DURATION + OVERHEAD_DURATION
43
44
45
@pytest.fixture
0 commit comments