.travis.yml 257B

123456789101112131415
  1. language: python
  2. services:
  3. - redis-server
  4. python:
  5. - "3.4"
  6. - "3.5"
  7. - "3.6"
  8. install:
  9. - "pip install -r requirements.txt"
  10. - "pip install coveralls"
  11. script:
  12. - py.test --cov-config .coveragerc --cov=synergine2 ./tests/
  13. after_success:
  14. - coveralls