18 lines
593 B
INI
18 lines
593 B
INI
[flake8]
|
|
show-source = True
|
|
max-line-length = 100
|
|
exclude = .git,.tox,dist,*egg,build,tools
|
|
#ignore =
|
|
|
|
# Configure flake8-import-order
|
|
application-import-names = toddlers
|
|
import-order-style = google
|
|
|
|
[tool:pytest]
|
|
addopts = --cov-config .coveragerc --cov=toddlers --cov-report=term-missing --cov-report xml --cov-report html
|
|
# ignore deprecation warnings that are out of our control
|
|
filterwarnings =
|
|
ignore::DeprecationWarning:bravado_core.*
|
|
ignore::DeprecationWarning:pdc_client.*
|
|
ignore::DeprecationWarning:pkg_resources.*
|
|
ignore::DeprecationWarning:swagger_spec_validator.*
|