.travis.yml 251 B

123456789101112131415161718192021222324
  1. language: python
  2. python:
  3. - "3.3"
  4. - "3.4"
  5. - "3.5"
  6. - "3.6"
  7. install: pip install tox-travis
  8. script:
  9. - tox
  10. after_success:
  11. - pip install coveralls
  12. - coveralls
  13. branches:
  14. only:
  15. - master
  16. notifications:
  17. email: false