Files
Aperant/tests/__init__.py
T
2025-12-10 09:10:55 +01:00

25 lines
904 B
Python

"""
Auto-Build Framework Test Suite
===============================
Comprehensive tests for the autonomous coding assistant framework.
Test modules:
- test_worktree.py: Git worktree management tests
- test_security.py: Command security and validation tests
- test_scan_secrets.py: Secret scanning and detection tests
- test_project_analyzer.py: Project analysis and profile generation tests
- test_implementation_plan.py: Implementation plan data structure tests
- test_qa_loop.py: QA validation loop tests
- test_workspace.py: Workspace selection and management tests
- test_parallel.py: Parallel execution tests
- test_recovery.py: Recovery mechanism tests
- test_critique_integration.py: Self-critique integration tests
Run tests with:
pytest tests/
pytest tests/ -v # verbose
pytest tests/ -k "test_worktree" # specific module
pytest tests/ --cov=auto-build # with coverage
"""