django-rest-framework/setup.cfg
2020-08-17 13:26:56 -07:00

31 lines
631 B
INI

[metadata]
license_file = LICENSE.md
[tool:pytest]
addopts=--tb=short --strict -ra
testspath = tests
[flake8]
ignore = E501,W504
banned-modules = json = use from rest_framework.utils import json!
[isort]
skip=.tox
atomic=true
multi_line_output=5
extra_standard_library=types
known_third_party=pytest,_pytest,django,pytz,uritemplate
known_first_party=rest_framework,tests
[coverage:run]
# NOTE: source is ignored with pytest-cov (but uses the same).
source = .
include = rest_framework/*,tests/*
branch = 1
[coverage:report]
include = rest_framework/*,tests/*
exclude_lines =
pragma: no cover
raise NotImplementedError