dpaste/.travis.yml
2014-08-02 12:56:59 +02:00

34 lines
541 B
YAML

language: python
python:
- 2.7
- 3.3
env:
- DJANGO=1.4.13
- DJANGO=1.5.8
- DJANGO=1.6.5
matrix:
exclude:
- python: 3.3
env: DJANGO=1.4.13
- python: 3.3
env: DJANGO=1.5.8
branches:
only:
- master
- develop
install:
- "pip install coverage==3.7"
- "pip install python-coveralls==2.4.0"
- "pip install Django==$DJANGO"
- "pip install -e ."
script:
coverage run --rcfile=.coverage.rc runtests.py
after_success:
coveralls --config_file=.coverage.rc --coveralls_yaml=.coveralls.yml