Testing Documentation¶
Comprehensive testing documentation for the FIML project.
Overview¶
- Test Documentation Index - Complete testing overview
- Testing Quickstart - Get started with testing
Test Reports¶
- Test Report - Latest test results
- Test Status Report - Current testing status
Infrastructure¶
- Test Infrastructure Improvement - Testing framework enhancements
- Quickstart Test Fixes - Fixes for quickstart tests
Running Tests¶
# Run all tests
pytest
# Run with coverage
pytest --cov=fiml --cov-report=html
# Run specific test suite
pytest tests/test_arbitrator.py
Test Coverage¶
The project maintains high test coverage across all components:
- Core functionality: 90%+ coverage
- Integration tests: Full workflow coverage
- Performance benchmarks: Automated regression detection
For detailed test metrics, see the Test Report.