.travis.yml 285 B

12345678910111213141516171819202122
  1. language: python
  2. dist: xenial
  3. cache: pip
  4. python:
  5. - "2.7"
  6. - "3.5"
  7. - "3.6"
  8. - "3.7"
  9. - "3.8"
  10. - "3.9"
  11. install:
  12. - pip install coverage coveralls codecov
  13. - pip install .
  14. script:
  15. - LC_ALL=en_US.UTF-8 coverage run -m unittest test
  16. after_success:
  17. - coveralls
  18. - codecov