File tree Expand file tree Collapse file tree 2 files changed +12
-7
lines changed Expand file tree Collapse file tree 2 files changed +12
-7
lines changed Original file line number Diff line number Diff line change @@ -12,13 +12,11 @@ addons:
12
12
-
13
13
install :
14
14
- pip install codecov
15
- - pip install tox
16
- - pip install tox-travis
17
- - pip install "isort>=5.0.2"
18
- - pip install black
15
+ - pip install tox tox-travis
16
+ - pip install isort black
19
17
script :
20
- - isort --check --recursive src tests
21
- - black --check src tests
18
+ - isort --check --diff src tests
19
+ - black --check --diff src tests
22
20
- codecov --version
23
21
- tox
24
22
after_success :
Original file line number Diff line number Diff line change 1
1
[tox]
2
- envlist = py{36,37},quality
2
+ envlist = py{36,37,38 },quality
3
3
4
4
[testenv]
5
5
passenv = CI TRAVIS TRAVIS_*
@@ -27,3 +27,10 @@ deps = twine
27
27
extras = quality
28
28
commands =
29
29
isort --recursive --diff --check-only src/ tests/
30
+
31
+ [tool:isort]
32
+ multi_line_output = 3
33
+ include_trailing_comma = True
34
+ force_grid_wrap = 0
35
+ use_parentheses = True
36
+ line_length = 88
You can’t perform that action at this time.
0 commit comments