dpaste/.travis.yml

28 lines
417 B
YAML
Raw Normal View History

2013-03-23 07:13:01 +11:00
language: python
2013-03-23 07:13:01 +11:00
python:
- "2.7"
2013-11-25 09:09:46 +11:00
- "3.3"
env:
- DJANGO=1.4
- DJANGO=1.5
- DJANGO=1.6
matrix:
exclude:
- python: "3.3"
env: DJANGO=1.4
- python: "3.3"
env: DJANGO=1.5
2013-03-23 07:13:01 +11:00
install:
- "pip install Django==$DJANGO"
- "pip install -e ."
2013-11-25 10:08:31 +11:00
script:
2013-11-26 08:44:36 +11:00
coverage run --rcfile=.coverage.rc runtests.py
2013-11-25 10:08:31 +11:00
after_success:
coveralls --config_file=.coverage.rc --coveralls_yaml=.coveralls.yml