Pytest Conversion Summary
Pytest-based test structure for COSET.
Test Files
tests/legacy/test_quantized_vectors_pytest.py- Quantized vector operationstests/legacy/test_lattices.py- Lattice teststests/legacy/test_nn.py- Neural network layer teststests/legacy/test_quant.py- Quantization function tests
Running Tests
# All tests (skip slow)
pytest tests/ -v -m "not slow"
# With coverage
pytest tests/ --cov=coset --cov-report=htmlMarkers
@pytest.mark.slow- Performance benchmarks@pytest.mark.integration- Integration tests
See tests/README.md for full documentation.