SpeechRecognition/pytest.ini

20 lines
690 B
INI

[pytest]
testpaths = test
python_files = test_*.py
python_classes = Test*
python_functions = test_*
addopts = -v --tb=short --strict-markers
markers =
slow: marks tests as slow (deselect with '-m "not slow"')
integration: marks tests as integration tests
unit: marks tests as unit tests
real: marks tests as real end-to-end tests (requires real files)
performance: marks tests as performance tests
requires_ffmpeg: marks tests that require ffmpeg
requires_gpu: marks tests that require GPU
requires_model: marks tests that require ASR model loaded
filterwarnings =
ignore::DeprecationWarning
ignore::PendingDeprecationWarning
ignore::UserWarning