Add isort configuration

Closes witten/borgmatic#169.
This commit is contained in:
Luke Murphy 2019-05-13 23:38:43 +02:00
parent 7388c723cd
commit b94dbff216
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
4 changed files with 18 additions and 0 deletions

3
scripts/isort Executable file
View File

@ -0,0 +1,3 @@
#!/usr/bin/env sh
isort --recursive --check-only --settings-path setup.cfg .

View File

@ -8,3 +8,11 @@ addopts = --cov-report term-missing:skip-covered --cov=borgmatic --ignore=tests/
[flake8]
ignore = E501,W503
exclude = *.*/*
[tool:isort]
force_single_line = False
include_trailing_comma = True
known_first_party = borgmatic
line_length = 100
multi_line_output = 3
skip = .tox

View File

@ -8,6 +8,7 @@ coverage==4.5.1
docopt==0.6.2
flake8==3.5.0
flexmock==0.10.2
isort==4.3.19
mccabe==0.6.1
more-itertools==4.3.0
pluggy==0.7.1

View File

@ -13,6 +13,7 @@ install_command =
commands =
pytest
sh scripts/black
sh scripts/isort
flake8 .
[testenv:black]
@ -24,3 +25,8 @@ commands =
deps = -rtest_requirements.txt
commands =
pytest tests/end-to-end
[testenv:isort]
deps = {[testenv]deps}
commands =
isort {posargs:--recursive} --settings-path setup.cfg .