.travis.yml 332 B

123456789101112131415161718192021
  1. language: python
  2. dist: focal
  3. python:
  4. - 2.7
  5. - 3.5
  6. - 3.6
  7. - pypy2
  8. - pypy3
  9. matrix:
  10. include:
  11. - python: 3.7
  12. dist: xenial
  13. install:
  14. - pip install -U coverage coveralls
  15. script:
  16. - coverage run ./setup.py test
  17. after_success:
  18. - coveralls
  19. notifications:
  20. email: icemac@gmx.net
  21. cache: pip