Skip to content

Commit 6a121fc

Browse files
committed
Run import-order only in py3.5 in Travis
1 parent eec5328 commit 6a121fc

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.travis.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,15 @@ python:
77
- 3.5
88
- pypy
99
install:
10-
- pip install pytest-cov coveralls flake8
10+
- pip install pytest-cov coveralls flake8 import-order
1111
- pip install pytest>=2.7.3 --upgrade
1212
- pip install -e .
1313
script:
1414
- flake8
15-
- import-order graphql
1615
- py.test --cov=graphql tests
1716
after_success:
1817
- coveralls
18+
matrix:
19+
include:
20+
- python: "3.5"
21+
script: import-order graphql

0 commit comments

Comments
 (0)