.travis.yml 228 B

123456789101112131415
  1. language: python
  2. python:
  3. - "3.3"
  4. - "3.4"
  5. - "3.5"
  6. - "3.6"
  7. install:
  8. - pip install cov-core
  9. - pip install nose2
  10. - pip install coveralls
  11. script:
  12. - nose2 --with-coverage --coverage pypog
  13. after_success:
  14. coveralls