diff --git a/.travis.yml b/.travis.yml index f6da14e67f15..745794152942 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,8 +1,12 @@ language: python -python: - - "2.6" - - "2.7" # command to install dependencies -install: "pip install . unittest2" -# command to run tests -script: nosetests +install: + - pip install tox + - pip install coveralls +# run tests +script: + - tox -e py26 + - tox -e py27 +after_success: + - tox -e cover + - coveralls