19 lines
486 B
INI
19 lines
486 B
INI
[tool:pytest]
|
|
addopts = -v --cov mydata --cov mydata_benchmarks --cov-report term-missing
|
|
--ignore node_modules --ignore .git --ignore .cache --ignore build
|
|
--ignore integration_tests --ignore docker
|
|
DJANGO_SETTINGS_MODULE = mydata.settings
|
|
python_files = tests.py test_*.py *_tests.py
|
|
|
|
[pep8]
|
|
max-line-length = 100
|
|
|
|
|
|
[mypy]
|
|
# Should match what's declared in Pipfile
|
|
python_version = 3.6
|
|
|
|
warn_redundant_casts = True
|
|
ignore_missing_imports = True
|
|
incremental = True
|