21 lines
383 B
INI
21 lines
383 B
INI
[pytest]
|
|
# Configuration pytest pour IPWatch
|
|
testpaths = tests
|
|
python_files = test_*.py
|
|
python_classes = Test*
|
|
python_functions = test_*
|
|
|
|
# Options par défaut
|
|
addopts =
|
|
-v
|
|
--tb=short
|
|
--strict-markers
|
|
|
|
# Markers
|
|
markers =
|
|
asyncio: marque les tests asynchrones
|
|
integration: marque les tests d'intégration
|
|
unit: marque les tests unitaires
|
|
|
|
asyncio_mode = auto
|