.travis.yml 420B

1234567891011121314151617181920212223242526
  1. sudo: false
  2. language: python
  3. python:
  4. - "3.4"
  5. - "3.5"
  6. - "3.6"
  7. services:
  8. - docker
  9. - redis-server
  10. before_install:
  11. - docker pull mailhog/mailhog
  12. - docker run -d -p 1025:1025 -p 8025:8025 mailhog/mailhog
  13. install:
  14. - pip install --upgrade pip setuptools
  15. - pip install -e ".[testing]"
  16. - pip install pytest-cov
  17. - pip install python-coveralls
  18. script:
  19. - py.test --cov tracim
  20. after_success:
  21. - coveralls