32 lines
477 B
YAML
32 lines
477 B
YAML
language: python
|
|
|
|
python:
|
|
- "2.6"
|
|
- "2.7"
|
|
- "3.4"
|
|
|
|
env:
|
|
- DJANGO_VERSION=1.5.10
|
|
- DJANGO_VERSION=1.6.7
|
|
- DJANGO_VERSION=1.7
|
|
|
|
branches:
|
|
only:
|
|
- master
|
|
|
|
matrix:
|
|
exclude:
|
|
- python: "3.4"
|
|
env: DJANGO_VERSION=1.5.10
|
|
|
|
- python: "3.4"
|
|
env: DJANGO_VERSION=1.6.7
|
|
|
|
install:
|
|
- pip install -q south
|
|
- pip install -q django==$DJANGO_VERSION
|
|
|
|
script:
|
|
- cd sample_project
|
|
- python manage.py test
|