.travis.yml 905 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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.6.11
  11. - DJANGO=1.7.7
  12. - DJANGO=1.8.3
  13. - DJANGO=1.9.8
  14. - DJANGO=1.10.0
  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. - pip install coverage==3.7.1
  21. - pip install coveralls==0.5
  22. script:
  23. - coverage run --source=jet --omit=*/migrations/*,*/south_migrations/*,*/tests/* manage.py test jet
  24. after_success:
  25. - coverage report
  26. - coveralls
  27. matrix:
  28. exclude:
  29. - python: 2.6
  30. env: DJANGO=1.7.7
  31. - python: 2.6
  32. env: DJANGO=1.8.3
  33. - python: 2.6
  34. env: DJANGO=1.9.8
  35. - python: 3.2
  36. env: DJANGO=1.9.8
  37. - python: 3.3
  38. env: DJANGO=1.9.8
  39. - python: 2.6
  40. env: DJANGO=1.10.0
  41. - python: 3.2
  42. env: DJANGO=1.10.0
  43. - python: 3.3
  44. env: DJANGO=1.10.0