21 lines
569 B
INI
21 lines
569 B
INI
[tool:pytest]
|
|
DJANGO_SETTINGS_MODULE = NorahUniversity.settings
|
|
python_files = tests.py test_*.py *_tests.py
|
|
python_classes = Test*
|
|
python_functions = test_*
|
|
addopts =
|
|
--verbose
|
|
--tb=short
|
|
--strict-markers
|
|
--durations=10
|
|
--cov=recruitment
|
|
--cov-report=term-missing
|
|
--cov-report=html:htmlcov
|
|
--cov-fail-under=80
|
|
testpaths = recruitment
|
|
markers =
|
|
slow: marks tests as slow (deselect with '-m "not slow"')
|
|
integration: marks tests as integration tests
|
|
unit: marks tests as unit tests
|
|
security: marks tests as security tests
|