.travis.yml 297 B

123456789101112131415161718192021
  1. language: python
  2. sudo: false
  3. addons:
  4. apt:
  5. packages:
  6. - texlive-latex-extra
  7. - dvipng
  8. python:
  9. - "3.5"
  10. - "3.6"
  11. # command to install dependencies
  12. install:
  13. - pip install -r requirements.txt
  14. - python setup.py install
  15. # command to run tests
  16. script: pytest