.travis.yml 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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.8
  32. - python: 2.6
  33. env: DJANGO=<1.9
  34. - python: 2.6
  35. env: DJANGO=<1.10
  36. - python: 3.2
  37. env: DJANGO=<1.10
  38. - python: 3.3
  39. env: DJANGO=<1.10
  40. - python: 2.6
  41. env: DJANGO=<1.11
  42. - python: 3.2
  43. env: DJANGO=<1.11
  44. - python: 3.3
  45. env: DJANGO=<1.11
  46. - python: 2.6
  47. env: DJANGO=<1.12
  48. - python: 3.2
  49. env: DJANGO=<1.12
  50. - python: 3.3
  51. env: DJANGO=<1.12