.travis.yml 346 B

1234567891011121314151617181920212223242526
  1. language: python
  2. # needed to use trusty
  3. sudo: required
  4. dist: xenial
  5. python:
  6. - "2.6"
  7. - "2.7"
  8. - "3.3"
  9. - "3.4"
  10. - "3.5"
  11. - "3.6"
  12. - "nightly"
  13. install:
  14. - pip install coverage
  15. - python setup.py install
  16. script:
  17. - coverage run setup.py test
  18. after_success:
  19. - pip install coveralls && coveralls
  20. - pip install codecov && codecov