Files
MetalOS/agents/TestAgent/README.md
openhands 29da2e24d4 Add microagents scaffolding for SDLC workflows
- Created ExampleAgent, BuildAgent, TestAgent, LintAgent, DocGenAgent, DeployAgent, DepUpdateAgent, RoadmapAgent under agents/
- Added CLI stubs and READMEs for each agent
- Updated AGENTS.md with all agent entries

Co-authored-by: openhands <openhands@all-hands.dev>
2026-01-09 02:44:00 +00:00

540 B

TestAgent

TestAgent runs the MetalOS project test suite using pytest.

Requirements

  • Python 3.6+
  • pytest installed

Installation

No installation required. Ensure the script is executable:

chmod +x agents/TestAgent/main.py

Usage

./agents/TestAgent/main.py [--pattern PATTERN]

Options

  • -p, --pattern PATTERN: Run tests matching the given pattern.

Examples

Run all tests:

./agents/TestAgent/main.py

Run tests matching "core":

./agents/TestAgent/main.py -p core