1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
[tool:pytest]
testpaths = test
[coverage:run]
branch = True
source = priority
[coverage:report]
fail_under = 100
show_missing = True
exclude_lines =
pragma: no cover
assert False, "Should not be reachable"
.*:.* # Python \d.*
.*:.* # Platform-specific:
[coverage:paths]
source =
src
.tox/*/site-packages
[flake8]
max-line-length = 120
max-complexity = 10
[mypy]
strict = true
warn_unused_configs = true
show_error_codes = true
[mypy-test_priority]
allow_untyped_defs = true
check_untyped_defs = false
ignore_missing_imports = true
disallow_subclassing_any = false
[egg_info]
tag_build =
tag_date = 0
|