tobitege 44bbe5e208 Fix agentskills tests (#2242) 1 anno fa
..
README.md 4292998ee2 doc: add more cmd in unit test documentation (#1963) 1 anno fa
test_action_serialization.py 110b878dd9 fix up serialization and deserialization of events (#1850) 1 anno fa
test_agent_skill.py 44bbe5e208 Fix agentskills tests (#2242) 1 anno fa
test_arg_parser.py 18d07bda89 feat: add max_budget_per_task configuration to control task cost (#2070) 1 anno fa
test_config.py 0082640ac8 fix test_config to prevent leaks (#2245) 1 anno fa
test_event_stream.py 0eccf31604 Refactor monologue and SWE agent to use the messages in state history (#1863) 1 anno fa
test_is_stuck.py 783fea62a0 Ignore pid for loop detection (Was: override eq...) (#2045) 1 anno fa
test_json.py 9ca2007201 fix json encoding (#2018) 1 anno fa
test_logging.py 46352e890b Logging security (#1943) 1 anno fa
test_micro_agents.py 0eccf31604 Refactor monologue and SWE agent to use the messages in state history (#1863) 1 anno fa
test_observation_serialization.py 110b878dd9 fix up serialization and deserialization of events (#1850) 1 anno fa
test_response_parsing.py e5f1dbf5e7 Move json utility to the custom json parsing; apply it to the monologue-like agents (#1740) 1 anno fa
test_sandbox.py 55fdee31ad Remove unnecessary stuff from the sandboxes tests (#2095) 1 anno fa
test_storage.py 5bdacf738d Refactor session management (#1810) 1 anno fa

README.md

Introduction

This folder contains unit tests that could be run locally.

Run all test:

poetry run pytest ./tests/unit

Run specific test file:

poetry run pytest ./tests/unit/test_micro_agents.py

Run specific unit test

poetry run pytest ./tests/unit/test_micro_agents.py:test_coder_agent_with_summary

More details see pytest doc