Skip to content

Instantly share code, notes, and snippets.

@nkryptic
Created February 26, 2013 19:56
Show Gist options
  • Save nkryptic/5041591 to your computer and use it in GitHub Desktop.
Save nkryptic/5041591 to your computer and use it in GitHub Desktop.
language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
env:
- DJANGO=https://github.com/django/django/archive/master.tar.gz
- DJANGO=django==1.5 --use-mirrors
- DJANGO=django==1.4.5 --use-mirrors
install:
- pip install $DJANGO
- pip install -r requirements/travis-ci.txt --use-mirrors
script:
- coverage run --source django_filters runtests.py
- coverage report
notifications:
email: false
matrix:
exclude:
- python: "3.2"
env: DJANGO=django==1.4.5 --use-mirrors
- python: "3.3"
env: DJANGO=django==1.4.5 --use-mirrors
allow_failures:
- python: "2.6"
env: DJANGO=https://github.com/django/django/archive/master.tar.gz
- python: "2.7"
env: DJANGO=https://github.com/django/django/archive/master.tar.gz
- python: "3.2"
env: DJANGO=https://github.com/django/django/archive/master.tar.gz
- python: "3.3"
env: DJANGO=https://github.com/django/django/archive/master.tar.gz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment