1 2 3 4 5 6 7 8 9 10
sudo: false language: python python: - "2.7.11" - "3.5" - "3.6" install: pip install tox-travis coveralls script: - tox - if [ $TRAVIS_TEST_RESULT -eq 0 ]; then coveralls; fi