mirror of
https://github.com/Hopiu/django-model-utils.git
synced 2026-05-05 09:14:42 +00:00
33 lines
785 B
YAML
33 lines
785 B
YAML
language: python
|
|
|
|
python:
|
|
- "2.6"
|
|
- "2.7"
|
|
|
|
env:
|
|
- DJANGO=Django==1.4.5 SOUTH=1
|
|
- DJANGO=Django==1.5.1 SOUTH=1
|
|
- DJANGO=https://github.com/django/django/tarball/master SOUTH=1
|
|
- DJANGO=Django==1.5.1 SOUTH=0
|
|
|
|
install:
|
|
- pip install $DJANGO --use-mirrors
|
|
- pip install coverage coveralls --use-mirrors
|
|
- sh -c "if [ '$SOUTH' = '1' ]; then pip install South==0.7.6; fi"
|
|
|
|
script:
|
|
- coverage run -a setup.py test
|
|
- coverage report
|
|
|
|
matrix:
|
|
include:
|
|
- python: 3.2
|
|
env: DJANGO=Django==1.5.1 SOUTH=0
|
|
- python: 3.2
|
|
env: DJANGO=https://github.com/django/django/tarball/master SOUTH=0
|
|
- python: 3.3
|
|
env: DJANGO=Django==1.5.1 SOUTH=0
|
|
- python: 3.3
|
|
env: DJANGO=https://github.com/django/django/tarball/master SOUTH=0
|
|
|
|
after_success: coveralls
|