.travis.yml 170 B

123456789101112
  1. language: python
  2. sudo: false
  3. python:
  4. - "3.5"
  5. - "3.6"
  6. install:
  7. - pip install -U wheel pytest==3
  8. - pip install .
  9. script: python3 setup.py test
  10. cache: pip