Browse Source
This puts tool configuration in their familiar and standard locations and simplifies the Tox configuration to just laying out the environments and factors. This also allows users who do not want to deal with overhead of Tox (for whatever reasons ...) to run pytest/black/etc. and have the same behaviour.pull/165/head
3 changed files with 14 additions and 8 deletions
@ -0,0 +1,3 @@
|
||||
[tool.black] |
||||
line-length = 100 |
||||
skip-string-normalization = true |
@ -1,2 +1,10 @@
|
||||
[metadata] |
||||
description-file=README.md |
||||
|
||||
[tool:pytest] |
||||
testpaths = tests |
||||
addopts = --cov-report term-missing:skip-covered --cov=borgmatic --ignore=tests/end-to-end |
||||
|
||||
[flake8] |
||||
ignore = E501,W503 |
||||
exclude = *.*/* |
||||
|
Loading…
Reference in new issue