.travis.yml 276 B

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