.travis.yml 230B

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