.travis.yml 696 B

1234567891011121314151617181920212223242526272829303132
  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. before_install:
  14. - export DJANGO_SETTINGS_MODULE=jet.tests.settings
  15. install:
  16. - if [[ $TRAVIS_PYTHON_VERSION == 2.6 ]]; then pip install importlib; fi
  17. - pip install -q Django==$DJANGO --use-mirrors
  18. - pip install . --use-mirrors
  19. - pip install coveralls
  20. script:
  21. - coverage run --source=jet --omit=*/migrations/*,*/south_migrations/*,*/tests/* manage.py test jet
  22. after_success:
  23. - coverage report
  24. - coveralls
  25. matrix:
  26. exclude:
  27. - python: 2.6
  28. env: DJANGO=1.6.11
  29. - python: 2.6
  30. env: DJANGO=1.7.7
  31. - python: 2.6
  32. env: DJANGO=1.8.3