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 feec99b commit 2f639e9Copy full SHA for 2f639e9
.travis.install
@@ -0,0 +1,9 @@
1
+#!/bin/bash
2
+
3
+PYTHON_VERSION=$(python --version 2>&1)
4
5
+if [[ "$PYTHON_VERSION" > "Python 3" ]]; then
6
7
+else
8
+ pip install twisted
9
+fi
.travis.yml
@@ -11,8 +11,8 @@ matrix:
11
- python: 2.6
12
13
install:
14
- # `pip install twisted` fails on python 3 except on trunk.
15
- - "pip install pytest coveralls pytz . git+https://github.com/twisted/twisted"
+ - "bash .travis.install"
+ - "pip install pytest coveralls pytz ."
16
script:
17
- "coverage run $(which py.test) ."
18
after_success:
0 commit comments