.travis.yml 273B

12345678910111213141516171819
  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. - pip install pytest-cov
  11. - pip install python-coveralls
  12. script:
  13. - py.test --cov tracim
  14. after_success:
  15. - coveralls