summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorKarl-Aksel Puulmann <oxymaccy@gmail.com>2015-01-09 12:23:05 +0200
committerKarl-Aksel Puulmann <oxymaccy@gmail.com>2015-01-09 12:33:27 +0200
commitb54823c96af5c66e716049f977f20f919dd55137 (patch)
tree67906385726a0ebb2f618594252cf65c4d62f53a /.travis.yml
parent9a6292170b909b200be3ea8082afb7296e002151 (diff)
Fix problem with travis not using correct python versions when testing.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml15
1 files changed, 8 insertions, 7 deletions
diff --git a/.travis.yml b/.travis.yml
index e4add334..a581f816 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,10 +1,11 @@
language: python
-env:
- - TOX_ENV=py26
- - TOX_ENV=py27
- - TOX_ENV=py33
- - TOX_ENV=py34
+python:
+ - "2.6"
+ - "2.7"
+ - "3.3"
+ - "3.4"
-install: pip install tox
+install:
+ - pip install . pytest mock
-script: tox -e $TOX_ENV
+script: py.test