We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a6689d commit b51a0d7Copy full SHA for b51a0d7
3 files changed
requirements-tests.txt
@@ -2,3 +2,4 @@ pytest >= 3.3.0
2
pytest-cov
3
pytest-mock
4
black
5
+isort
setup.cfg
@@ -1,2 +1,7 @@
1
[tool:pytest]
addopts = --cov --cov-config .coveragerc --cov-report term-missing --cov-report xml --cov-report html
+
+[isort]
+profile = black
6
+lines_after_imports = 2
7
+force_alphabetical_sort_within_sections = true
tox.ini
@@ -29,8 +29,10 @@ commands =
29
[testenv:format]
30
deps =
31
32
+ isort
33
commands =
34
black --check {posargs:.}
35
+ isort --check {posargs:.}
36
37
38
[flake8]
0 commit comments