.travis.yml 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. language: python
  2. python:
  3. - 2.6
  4. - 2.7
  5. - 3.2
  6. - 3.3
  7. - 3.4
  8. - 3.5
  9. - 3.6
  10. - pypy
  11. env:
  12. - DJANGO="<1.7"
  13. - DJANGO="<1.8"
  14. - DJANGO="<1.9"
  15. - DJANGO="<1.10"
  16. - DJANGO="<1.11"
  17. - DJANGO="<1.12"
  18. before_install:
  19. - export DJANGO_SETTINGS_MODULE=jet.tests.settings
  20. install:
  21. - pip install -q "Django${DJANGO}"
  22. - pip install .
  23. - pip install coverage==3.7.1
  24. - pip install coveralls==0.5
  25. script:
  26. - coverage run --source=jet --omit=*/migrations/*,*/south_migrations/*,*/tests/* manage.py test jet
  27. after_success:
  28. - coverage report
  29. - coveralls
  30. matrix:
  31. exclude:
  32. - python: 2.6
  33. env: DJANGO="<1.8"
  34. - python: 2.6
  35. env: DJANGO="<1.9"
  36. - python: 2.6
  37. env: DJANGO="<1.10"
  38. - python: 3.2
  39. env: DJANGO="<1.10"
  40. - python: 3.3
  41. env: DJANGO="<1.10"
  42. - python: 2.6
  43. env: DJANGO="<1.11"
  44. - python: 3.2
  45. env: DJANGO="<1.11"
  46. - python: 3.3
  47. env: DJANGO="<1.11"
  48. - python: 2.6
  49. env: DJANGO="<1.12"
  50. - python: 3.2
  51. env: DJANGO="<1.12"
  52. - python: 3.3
  53. env: DJANGO="<1.12"