mirror of
https://github.com/0xsrb/AASRT.git
synced 2026-04-23 12:56:37 +02:00
19 lines
572 B
Python
19 lines
572 B
Python
"""
|
|
AASRT Test Suite
|
|
|
|
This package contains all tests for the AI Agent Security Reconnaissance Tool.
|
|
|
|
Test Categories:
|
|
- Unit tests: Test individual components in isolation
|
|
- Integration tests: Test component interactions
|
|
- End-to-end tests: Test complete workflows
|
|
|
|
Running Tests:
|
|
pytest # Run all tests
|
|
pytest tests/unit/ # Run unit tests only
|
|
pytest tests/integration/ # Run integration tests only
|
|
pytest -v --cov=src # Run with coverage
|
|
pytest -m "not slow" # Skip slow tests
|
|
"""
|
|
|