.travis.yml 548 B

12345678910111213141516171819202122232425262728
  1. language: python
  2. python:
  3. - 2.7
  4. - 3.5
  5. - 3.6
  6. - 3.7
  7. - 3.8
  8. sudo: false
  9. #before_install:
  10. # - "export DISPLAY=:99.0"
  11. # - "sh -e /etc/init.d/xvfb start"
  12. services:
  13. - redis-server
  14. install:
  15. - pip install -r requirements-tracker.txt
  16. # - pip install selenium
  17. script:
  18. - NO_LIVE_SERVICE_TEST=1 nosetests terroroftinytown/client/ terroroftinytown/services/
  19. # Firefox is too old (version 31, need 48+) on Travis
  20. # - if [[ $TRAVIS_PYTHON_VERSION == 3* ]]; then DISPLAY=:99.0 nosetests terroroftinytown/tracker/; fi