Warning, /AID2E-framework/pytest.ini is written in an unsupported language. File is not indexed.
0001 [pytest]
0002 # Pytest configuration for AID2E Framework
0003
0004 # Test discovery patterns
0005 python_files = test_*.py
0006 python_classes = Test*
0007 python_functions = test_*
0008
0009 # Test paths
0010 testpaths = tests packages
0011
0012 # Output options
0013 addopts =
0014 -v
0015 --strict-markers
0016 --tb=short
0017 --disable-warnings
0018
0019 # Markers
0020 markers =
0021 unit: Unit tests
0022 integration: Integration tests
0023 slow: Tests that take a long time to run
0024 core: Tests for aid2e-core package
0025 optimizers: Tests for aid2e-optimizers package
0026 schedulers: Tests for aid2e-schedulers package
0027 utilities: Tests for aid2e-utilities package
0028
0029 # Coverage options (when using pytest-cov)
0030 # Uncomment and modify as needed:
0031 # addopts = --cov=packages --cov-report=html --cov-report=term