Skip to content

Commit 96fb737

Browse files
committed
UpdatE
1 parent b15bc83 commit 96fb737

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/test_on_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -584,7 +584,7 @@ jobs:
584584
working-directory: .
585585
run: |
586586
source .venv/bin/activate
587-
python -m pytest ./libs/agno/tests/integration/agents
587+
python -m pytest ./libs/agno/tests/integration/agent
588588
589589
test-teams:
590590
runs-on: ubuntu-latest

libs/agno/tests/integration/storage/test_json_storage_agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def test_multiple_interactions(agent_with_storage, agent_storage):
7171
# Verify both interactions are in the same session
7272
stored_session = agent_storage.read(session_id)
7373
assert stored_session is not None
74-
assert len(stored_session.memory["runs"]) >= 4 # Should have at least 4 messages (2 questions + 2 responses)
74+
assert len(stored_session.memory["runs"]) >= 2 # Should have at least 2 runs (2 x (question + response))
7575

7676

7777
def test_session_retrieval_by_user(agent_with_storage, agent_storage):

libs/agno/tests/integration/storage/test_sqlite_storage_agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def test_multiple_interactions(agent_with_storage, agent_storage):
7272
# Verify both interactions are in the same session
7373
stored_session = agent_storage.read(session_id)
7474
assert stored_session is not None
75-
assert len(stored_session.memory["runs"]) >= 4 # Should have at least 4 messages (2 questions + 2 responses)
75+
assert len(stored_session.memory["runs"]) >= 2 # Should have at least 2 runs (2 x (question + response))
7676

7777

7878
def test_session_retrieval_by_user(agent_with_storage, agent_storage):

libs/agno/tests/integration/storage/test_yaml_storage_agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def test_multiple_interactions(agent_with_storage, agent_storage):
7171
# Verify both interactions are in the same session
7272
stored_session = agent_storage.read(session_id)
7373
assert stored_session is not None
74-
assert len(stored_session.memory["runs"]) >= 4 # Should have at least 4 messages (2 questions + 2 responses)
74+
assert len(stored_session.memory["runs"]) >= 2 # Should have at least 2 runs (2 x (question + response))
7575

7676

7777
def test_session_retrieval_by_user(agent_with_storage, agent_storage):

0 commit comments

Comments
 (0)