summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@cepl.eu>2016-04-03 15:53:43 +0200
committerMatěj Cepl <mcepl@cepl.eu>2016-05-20 21:39:29 +0200
commit35af51de572383c317a8e1e94ef09a00e7c369eb (patch)
tree3546b2234f54473d9428f369533f620a95de4bd3 /.travis.yml
parentaad0b7e737d7e8781d3f7a04c1b34566e5f77631 (diff)
downloadm2crypto-35af51de572383c317a8e1e94ef09a00e7c369eb.tar.gz
Extend travis.yml to test also py3k (with allowed_failures)
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml6
1 files changed, 6 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
index e2a9d7c..ca2b3ad 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -14,6 +14,12 @@ sudo: false
python:
- 2.6
- 2.7
+ - 3.3
+ - 3.4
+matrix:
+ allow_failures:
+ - python: 3.3
+ - python: 3.4
install:
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then travis_retry pip install Twisted==15.0.0 ; else travis_retry pip install Twisted ; fi