Skip to content

Commit 2528d1d

Browse files
committed
Fixed isort bug version
1 parent e0e6bc5 commit 2528d1d

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ python:
88
- pypy
99
cache: pip
1010
install:
11-
- pip install --cache-dir $HOME/.cache/pip pytest-cov coveralls flake8 isort gevent==1.1b5 six>=1.10.0
11+
- pip install --cache-dir $HOME/.cache/pip pytest-cov coveralls flake8 isort==3.9.6 gevent==1.1b5 six>=1.10.0
1212
- pip install --cache-dir $HOME/.cache/pip pytest>=2.7.3 --upgrade
1313
- pip install -e .
1414
script:

tox.ini

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = flake8,import-order,py27,py33,py34,py35,pypy,docs
2+
envlist = flake8,isort,py27,py33,py34,py35,pypy,docs
33

44
[testenv]
55
deps =
@@ -15,12 +15,12 @@ commands =
1515
deps = flake8
1616
commands = flake8
1717

18-
[testenv:import-order]
18+
[testenv:isort]
1919
basepython=python3.5
2020
deps =
21-
import-order
21+
isort==3.9.6
2222
gevent==1.1rc1
23-
commands = import-order graphql
23+
commands = isort -rc graphql
2424

2525
[testenv:docs]
2626
changedir = docs

0 commit comments

Comments
 (0)