.travis.yml 802 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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. - if [[ $TRAVIS_PYTHON_VERSION == 2.6 ]]; then pip install importlib; fi
  19. - pip install -q Django==$DJANGO --use-mirrors
  20. - pip install . --use-mirrors
  21. script:
  22. - python manage.py test jet
  23. matrix:
  24. exclude:
  25. - python: 2.6
  26. env: DJANGO=1.6.11
  27. - python: 2.6
  28. env: DJANGO=1.7.7
  29. - python: 2.6
  30. env: DJANGO=1.8.3
  31. - python: 3.2
  32. env: DJANGO=1.4.20
  33. - python: 3.3
  34. env: DJANGO=1.4.20
  35. - python: 3.4
  36. env: DJANGO=1.4.20
  37. - python: pypy
  38. env: DJANGO=1.4.20
  39. - python: pypy
  40. env: DJANGO=1.5.12