mirror of
https://github.com/DarrenOfficial/dpaste.git
synced 2024-11-15 08:02:54 +11:00
29 lines
488 B
YAML
29 lines
488 B
YAML
language: python
|
|
|
|
python:
|
|
- 2.7
|
|
- 3.3
|
|
|
|
env:
|
|
- DJANGO=1.4.10
|
|
- DJANGO=1.5.5
|
|
- DJANGO=1.6
|
|
|
|
matrix:
|
|
exclude:
|
|
- python: 3.3
|
|
env: DJANGO=1.4
|
|
- python: 3.3
|
|
env: DJANGO=1.5
|
|
|
|
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
|