mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2025-12-24 02:39:20 -05:00
8 lines
502 B
INI
8 lines
502 B
INI
[pytest]
|
|
DJANGO_SETTINGS_MODULE = recipes.test_settings
|
|
testpaths = cookbook/tests
|
|
python_files = tests.py test_*.py *_tests.py
|
|
# uncomment to run coverage reports
|
|
addopts = -n auto --cov=. --cov-report=html:docs/reports/coverage --cov-report=xml:docs/reports/coverage/coverage.xml --junitxml=docs/reports/tests/pytest.xml --html=docs/reports/tests/tests.html
|
|
# addopts = -n auto --junitxml=docs/reports/tests/pytest.xml --html=docs/reports/tests/tests.html
|
|
asyncio_default_fixture_loop_scope = fixture |