.travis.yml 357 B

123456789101112131415161718192021222324252627
  1. language: python
  2. python:
  3. - "3.5"
  4. - "3.6"
  5. - "3.7"
  6. - "3.8"
  7. os:
  8. - linux
  9. sudo: false
  10. install:
  11. # add brotli for tests
  12. - pip install brotlipy
  13. - python setup.py install
  14. - pip install coverage pytest-cov codecov
  15. - pip install 'jinja2<3.0.0'
  16. - pip install 'itsdangerous<2.0.0'
  17. script:
  18. - python setup.py test
  19. after_success:
  20. - codecov