.travis.yml 298B

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