mirror of
https://github.com/DarrenOfficial/dpaste.git
synced 2024-11-15 16:12:51 +11:00
34 lines
541 B
YAML
34 lines
541 B
YAML
language: python
|
|
|
|
python:
|
|
- 2.7
|
|
- 3.3
|
|
|
|
env:
|
|
- DJANGO=1.4.16
|
|
- DJANGO=1.6.8
|
|
- DJANGO=1.7.1
|
|
|
|
matrix:
|
|
exclude:
|
|
- python: 3.3
|
|
env: DJANGO=1.4.16
|
|
- python: 3.3
|
|
env: DJANGO=1.6.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
|