.travis.yml 316B

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