You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
349 B

[tool.black]
line-length = 79
py37 = true
exclude = '''
/(
migrations
| __pycache__
)/
'''
[tool.pytest.ini_options]
#FAIL_INVALID_TEMPLATE_VARS = true
django_debug_mode = true
DJANGO_SETTINGS_MODULE = "repoapi.settings.test"
pep8ignore = "*.py W503"
[tool.coverage.run]
data_file = "/results/.coverage"
omit = [
"*/test/*",
"*/test_*.py",
]