.travis.yml 310B

12345678910111213141516171819
  1. language: python
  2. os:
  3. - linux
  4. - osx
  5. - windows
  6. services:
  7. - redis-server
  8. python:
  9. - "3.5"
  10. - "3.6"
  11. install:
  12. - "pip install -r requirements.txt"
  13. - "pip install pytest-cov"
  14. - "pip install coveralls"
  15. script:
  16. - py.test --cov-config .coveragerc --cov=opencombat ./tests/
  17. after_success:
  18. - coveralls