21 lines
562 B
INI
21 lines
562 B
INI
[tool:pytest]
|
|
testpaths = tests/python
|
|
python_files = test_*.py
|
|
python_classes = Test*
|
|
python_functions = test_*
|
|
addopts =
|
|
--verbose
|
|
--tb=short
|
|
--strict-markers
|
|
--disable-warnings
|
|
--durations=10
|
|
-ra
|
|
markers =
|
|
slow: marks tests as slow (deselect with '-m "not slow"')
|
|
gpu: marks tests that require GPU
|
|
benchmark: marks performance benchmark tests
|
|
integration: marks integration tests
|
|
compatibility: marks sklearn compatibility tests
|
|
filterwarnings =
|
|
ignore::DeprecationWarning
|
|
ignore::PendingDeprecationWarning |