mirror of
https://github.com/Hopiu/django-model-utils.git
synced 2026-05-04 00:34:42 +00:00
31 lines
825 B
YAML
31 lines
825 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 --branch --include="model_utils/*" --omit="model_utils/tests/*" setup.py test
|
|
|
|
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
|