Skip to content

Commit e0e6bc5

Browse files
committed
Improved import-order package
1 parent 44e434f commit e0e6bc5

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
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 import-order gevent==1.1b5 six>=1.10.0
11+
- pip install --cache-dir $HOME/.cache/pip pytest-cov coveralls flake8 isort 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:
@@ -21,5 +21,5 @@ matrix:
2121
- python: "3.5"
2222
script:
2323
- flake8
24-
- import-order graphql
24+
- isort --check-only graphql/ -rc
2525
- py.test --cov=graphql graphql tests tests_py35

graphql/language/tests/test_visitor.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
from graphql.language.ast import Field, Name, SelectionSet, Document, OperationDefinition
1+
from graphql.language.ast import (Document, Field, Name, OperationDefinition,
2+
SelectionSet)
23
from graphql.language.parser import parse
34
from graphql.language.printer import print_ast
45
from graphql.language.visitor import (BREAK, REMOVE, ParallelVisitor,

0 commit comments

Comments
 (0)