.travis.yml 211 B

1234567891011121314151617181920
  1. language: python
  2. python:
  3. - "3.3"
  4. - "3.4"
  5. script:
  6. - python setup.py test
  7. after_success:
  8. - pip install coveralls
  9. - coveralls
  10. branches:
  11. only:
  12. - master
  13. notifications:
  14. email: false