.travis.yml 919 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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.7
  11. - DJANGO=<1.8
  12. - DJANGO=<1.9
  13. - DJANGO=<1.10
  14. - DJANGO=<1.11
  15. - DJANGO=<1.12
  16. before_install:
  17. - export DJANGO_SETTINGS_MODULE=jet.tests.settings
  18. install:
  19. - pip install -q "Django${DJANGO}" --use-mirrors
  20. - pip install . --use-mirrors
  21. - pip install coverage==3.7.1
  22. - pip install coveralls==0.5
  23. script:
  24. - coverage run --source=jet --omit=*/migrations/*,*/south_migrations/*,*/tests/* manage.py test jet
  25. after_success:
  26. - coverage report
  27. - coveralls
  28. matrix:
  29. exclude:
  30. - python: 2.6
  31. env: DJANGO=1.7.7
  32. - python: 2.6
  33. env: DJANGO=1.8.3
  34. - python: 2.6
  35. env: DJANGO=1.9.8
  36. - python: 3.2
  37. env: DJANGO=1.9.8
  38. - python: 3.3
  39. env: DJANGO=1.9.8
  40. - python: 2.6
  41. env: DJANGO=1.10.0
  42. - python: 3.2
  43. env: DJANGO=1.10.0
  44. - python: 3.3
  45. env: DJANGO=1.10.0