.travis.yml 192 B

123456789101112
  1. language: python
  2. python:
  3. - "3.5"
  4. - "3.6"
  5. # command to install dependencies
  6. install:
  7. - pip install -r requirements.txt
  8. - python setup.py install
  9. # command to run tests
  10. script: pytest