We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 079bd05 commit a4cf8bcCopy full SHA for a4cf8bc
.travis.yml
@@ -1,4 +1,5 @@
1
language: python
2
+
3
python:
4
- "3.3"
5
- "3.4"
@@ -12,6 +13,9 @@ services:
12
13
install:
14
- pip install -U pip setuptools
15
- pip install -U -e ".[dev]"
16
+ # we can't test eventlet>0.20.1 in our py27 CI environment until the fix
17
+ # in https://github.com/eventlet/eventlet/issues/401 is released
18
+ - if [[ $TRAVIS_PYTHON_VERSION == 2* ]]; then travis_retry pip install eventlet==0.20.1; fi
19
20
script:
21
- make test
0 commit comments