diff options
author | Hamilton Kibbe <hamilton.kibbe@gmail.com> | 2015-02-18 21:14:30 -0500 |
---|---|---|
committer | Hamilton Kibbe <hamilton.kibbe@gmail.com> | 2015-02-18 21:14:30 -0500 |
commit | e71d7a24b5be3e68d36494869595eec934db4bd2 (patch) | |
tree | f48e714895acaecedc4d8bdf323b01a8c2a043c1 /.travis.yml | |
parent | 8e4fc555048d411c2d7c894a1e44d4ea73e821a8 (diff) | |
download | gerbonara-e71d7a24b5be3e68d36494869595eec934db4bd2.tar.gz gerbonara-e71d7a24b5be3e68d36494869595eec934db4bd2.tar.bz2 gerbonara-e71d7a24b5be3e68d36494869595eec934db4bd2.zip |
Python 3 tests passing
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 9 |
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
|