1language: python 2# command to install tox, tox env will install deps. 3install: pip install tox 4# command to run tests 5script: tox 6 7after_success: 8 coveralls 9 10