From e71d7a24b5be3e68d36494869595eec934db4bd2 Mon Sep 17 00:00:00 2001 From: Hamilton Kibbe Date: Wed, 18 Feb 2015 21:14:30 -0500 Subject: Python 3 tests passing --- .travis.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to '.travis.yml') 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 -- cgit