|
|
vor 1 Jahr | |
|---|---|---|
| .. | ||
| README.md | vor 1 Jahr | |
| test_acompletion.py | vor 1 Jahr | |
| test_action_serialization.py | vor 1 Jahr | |
| test_agent_controller.py | vor 1 Jahr | |
| test_agent_skill.py | vor 1 Jahr | |
| test_aider_linter.py | vor 1 Jahr | |
| test_arg_parser.py | vor 1 Jahr | |
| test_bash_parsing.py | vor 1 Jahr | |
| test_codeact_agent.py | vor 1 Jahr | |
| test_condenser.py | vor 1 Jahr | |
| test_config.py | vor 1 Jahr | |
| test_event_stream.py | vor 1 Jahr | |
| test_is_stuck.py | vor 1 Jahr | |
| test_json.py | vor 1 Jahr | |
| test_listen.py | vor 1 Jahr | |
| test_llm.py | vor 1 Jahr | |
| test_logging.py | vor 1 Jahr | |
| test_message_serialization.py | vor 1 Jahr | |
| test_micro_agents.py | vor 1 Jahr | |
| test_observation_serialization.py | vor 1 Jahr | |
| test_prompt_manager.py | vor 1 Jahr | |
| test_response_parsing.py | vor 1 Jahr | |
| test_runtime_build.py | vor 1 Jahr | |
| test_security.py | vor 1 Jahr | |
| test_storage.py | vor 1 Jahr | |
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