summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorJoris Roovers <jroovers@cisco.com>2015-11-05 16:53:15 +0100
committerJoris Roovers <jroovers@cisco.com>2015-11-05 17:03:05 +0100
commitad3fe460be4e3ba8bb2e56898cf62731bf6ba0bb (patch)
tree5a591899b2f3d3a23d390c4742083b1137457472 /.travis.yml
parent4825d0a2eaf24fcaef75350f99736cb4bca67128 (diff)
Python 3 support
Python 3 is now supported. Made some changes to: imports, exception handling, unicode strings. The unit tests will now also be ran against python 3.4 and python 3.5 in travis. Additionally: small bugfix in run_tests.sh related to py.test invocation.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml2
1 files changed, 2 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
index ef936f7..5acdd79 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,6 +1,8 @@
language: python
python:
- "2.7"
+ - "3.4"
+ - "3.5"
install:
- "pip install -r requirements.txt"
- "pip install -r test-requirements.txt"