.travis.yml 228 B

123456789101112131415161718
  1. language: python
  2. sudo: false
  3. cache: pip
  4. python:
  5. - "2.6"
  6. - "2.7"
  7. - "3.3"
  8. - "3.4"
  9. - "3.5"
  10. - "3.6"
  11. install:
  12. - pip install tox-travis codecov
  13. script:
  14. - tox -v
  15. after_success:
  16. - codecov
  17. notifications:
  18. email: false