.travis.yml 403B

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