summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorHamilton Kibbe <hamilton.kibbe@gmail.com>2015-02-18 21:14:30 -0500
committerHamilton Kibbe <hamilton.kibbe@gmail.com>2015-02-18 21:14:30 -0500
commite71d7a24b5be3e68d36494869595eec934db4bd2 (patch)
treef48e714895acaecedc4d8bdf323b01a8c2a043c1 /.travis.yml
parent8e4fc555048d411c2d7c894a1e44d4ea73e821a8 (diff)
downloadgerbonara-e71d7a24b5be3e68d36494869595eec934db4bd2.tar.gz
gerbonara-e71d7a24b5be3e68d36494869595eec934db4bd2.tar.bz2
gerbonara-e71d7a24b5be3e68d36494869595eec934db4bd2.zip
Python 3 tests passing
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml9
1 files changed, 6 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml
index 17f7516..2deada8 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,16 +1,19 @@
language: python
python:
- "2.7"
+ - "3.3"
+ - "3.4"
# command to install dependencies
-install:
+install:
- "pip install -r requirements.txt"
+ - "pip install -r test-requirements.txt"
- "pip install coveralls"
# command to run tests
-script:
+script:
- make test-coverage
# Coveralls
-after_success:
+after_success:
- coveralls