Xingyao Wang 2e6b08db4f fix: workspace folder permission & app container cannot access client API (#3300) 1 an în urmă
..
README.md 9605106e72 feat: append_file incl. all tests [agentskills] (#2346) 1 an în urmă
test_acompletion.py a4cb880699 (feat) LLM class: added acompletion and streaming + unit test (#3202) 1 an în urmă
test_action_serialization.py 62ce183c2d [Agent Action] Support the ability to specify whether to keep prompt for CmdRun (#3218) 1 an în urmă
test_agent_skill.py bd68249fba [Arch] Test `EventStreamRuntime` to ensure its feature parity with `ServerRuntime` (#3157) 1 an în urmă
test_aider_linter.py fa6c12473e #2220, integrated aider style linting, currently passes related o… (#2489) 1 an în urmă
test_arg_parser.py e3e437fcc2 Rework --llm-config CLI arg (#2957) 1 an în urmă
test_bash_parsing.py 90d0a62469 (arch) Switch default runtime to EventStream Runtime (#3271) 1 an în urmă
test_config.py a5195b0e65 chore: clean up sandbox and ssh related configs (#3301) 1 an în urmă
test_event_stream.py 31b244f95e [Refactor, Evaluation] Refactor and clean up evaluation harness to remove global config and use EventStreamRuntime (#3230) 1 an în urmă
test_image_agnostic_util.py 9b1f59a56e Arch: refactor and add unit tests for `EventStreamRuntime` docker image build (#2908) 1 an în urmă
test_is_stuck.py bd68249fba [Arch] Test `EventStreamRuntime` to ensure its feature parity with `ServerRuntime` (#3157) 1 an în urmă
test_json.py 415843476c Feat: Add Vision Input Support for LLM with Vision Capabilities (#2848) 1 an în urmă
test_listen.py f36639be28 Improve listen.py test coverage (#3289) 1 an în urmă
test_llm.py a562a7ac7d Add unit tests for LLM init function (#3188) 1 an în urmă
test_logging.py c68478f470 Customize LLM config per agent (#2756) 1 an în urmă
test_message_serialization.py 415843476c Feat: Add Vision Input Support for LLM with Vision Capabilities (#2848) 1 an în urmă
test_micro_agents.py 415843476c Feat: Add Vision Input Support for LLM with Vision Capabilities (#2848) 1 an în urmă
test_observation_serialization.py c897791024 Refactor LLM config (#2953) 1 an în urmă
test_response_parsing.py 3a21198424 Remove monologue agent (#3036) 1 an în urmă
test_runtime.py 2e6b08db4f fix: workspace folder permission & app container cannot access client API (#3300) 1 an în urmă
test_runtime_build.py bb66f15ff6 [Arch] Streamline EventStream Runtime Image Building Logic (#3259) 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