We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent daf53a0 commit dadc40eCopy full SHA for dadc40e
.travis.yml
@@ -1,16 +1,18 @@
1
language: python
2
-sudo: false
+dist: xenial
3
+
4
python:
-- 2.7
5
-- 3.3
6
-- 3.4
7
-- 3.5
8
-- pypy
+ - 2.7
+ - 3.3
+ - 3.4
+ - 3.5
9
+ - pypy3
10
install:
-- pip install pytest pytest-cov coveralls flake8
11
-- pip install .
+ - pip install pytest pytest-cov flake8
12
+ - pip install .
13
script:
-- py.test --cov=graphql_relay
14
+ - py.test --cov=graphql_relay
15
# - flake8
16
after_success:
-- coveralls
17
+ - pip install coveralls
18
+ - coveralls
0 commit comments