.travis.yml 196B

12345678910111213141516
  1. sudo: false
  2. language: python
  3. python:
  4. - "3.4"
  5. - "3.5"
  6. - "3.6"
  7. install:
  8. - pip install --upgrade pip setuptools
  9. - pip install -e ".[testing]"
  10. script: pytest
  11. after_success:
  12. - coveralls