.travis.yml 727 B

123456789101112131415161718192021222324252627282930313233343536373839
  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.4.20
  11. - DJANGO=1.5.12
  12. - DJANGO=1.6.11
  13. - DJANGO=1.7.7
  14. - DJANGO=1.8.3
  15. before_install:
  16. - export DJANGO_SETTINGS_MODULE=jet.tests.settings
  17. install:
  18. - pip install -q Django==$DJANGO --use-mirrors
  19. - pip install . --use-mirrors
  20. script:
  21. - python manage.py test jet
  22. matrix:
  23. exclude:
  24. - python: 3.2
  25. env: DJANGO=1.4.20
  26. - python: 3.3
  27. env: DJANGO=1.4.20
  28. - python: 3.4
  29. env: DJANGO=1.4.20
  30. - python: pypy
  31. env: DJANGO=1.4.20
  32. - python: pypy
  33. env: DJANGO=1.5.12
  34. - python: 2.6
  35. env: DJANGO=1.6.11
  36. - python: 2.6
  37. env: DJANGO=1.7.7
  38. - python: 2.6
  39. env: DJANGO=1.8.3