.travis.yml 243 B

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