Xingyao Wang a47713ecb0 [Arch] Remove supports for Background Commands (#2803) 1 an în urmă
..
README.md 9605106e72 feat: append_file incl. all tests [agentskills] (#2346) 1 an în urmă
test_action_serialization.py a47713ecb0 [Arch] Remove supports for Background Commands (#2803) 1 an în urmă
test_agent_skill.py 41ddba84bd [Agent] (Potentially) improve Editing using `diff` (#2685) 1 an în urmă
test_arg_parser.py e45b311c35 Remove MAX_CHARS traffic control (#2694) 1 an în urmă
test_config.py 143f38d25a Refactored sandbox config and added fast boot (#2455) 1 an în urmă
test_event_stream.py 0b8d357bef Add event synchronously (#2700) 1 an în urmă
test_image_agnostic_util.py 41564c2eac Use :main instead of :latest (#2539) 1 an în urmă
test_ipython.py 143f38d25a Refactored sandbox config and added fast boot (#2455) 1 an în urmă
test_is_stuck.py a47713ecb0 [Arch] Remove supports for Background Commands (#2803) 1 an în urmă
test_json.py 9ca2007201 fix json encoding (#2018) 1 an în urmă
test_logging.py d2509a19c8 fix: logger with more masking of sensitive data (#2470) 1 an în urmă
test_micro_agents.py 80fe13f4be rename our completion as a drop-in replacement of litellm completion (#2509) 1 an în urmă
test_observation_serialization.py 110b878dd9 fix up serialization and deserialization of events (#1850) 1 an în urmă
test_response_parsing.py b2307db010 Document, rename Agent* exceptions to LLM* (#2508) 1 an în urmă
test_sandbox.py 143f38d25a Refactored sandbox config and added fast boot (#2455) 1 an în urmă
test_storage.py 5bdacf738d Refactor session management (#1810) 1 an în urmă

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

For a more verbose output, to above calls the -v flag can be used (even more verbose: -vv and -vvv):

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

More details see pytest doc