.travis.yml 758 B

12345678910111213141516171819202122232425262728293031323334353637
  1. language: python
  2. python:
  3. - 2.6
  4. - 2.7
  5. - 3.2
  6. - 3.3
  7. - 3.4
  8. - pypy
  9. env:
  10. - DJANGO=1.6.11
  11. - DJANGO=1.7.7
  12. - DJANGO=1.8.3
  13. - DJANGO=1.9.8
  14. before_install:
  15. - export DJANGO_SETTINGS_MODULE=jet.tests.settings
  16. install:
  17. - pip install -q Django==$DJANGO --use-mirrors
  18. - pip install . --use-mirrors
  19. - pip install coverage==3.7.1
  20. - pip install coveralls==0.5
  21. script:
  22. - coverage run --source=jet --omit=*/migrations/*,*/south_migrations/*,*/tests/* manage.py test jet
  23. after_success:
  24. - coverage report
  25. - coveralls
  26. matrix:
  27. exclude:
  28. - python: 2.6
  29. env: DJANGO=1.7.7
  30. - python: 2.6
  31. env: DJANGO=1.8.3
  32. - python: 2.6
  33. env: DJANGO=1.9.8
  34. - python: 3.2
  35. env: DJANGO=1.9.8
  36. - python: 3.3
  37. env: DJANGO=1.9.8