dpaste/.travis.yml

23 lines
252 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:
2013-11-26 09:10:24 +11:00
- 2.7
2016-03-24 00:15:21 +11:00
- 3.5
env:
2016-03-24 00:15:21 +11:00
- DJANGO=1.8.*
- DJANGO=1.9.*
2016-03-24 00:15:21 +11:00
before_install:
- pip install codecov
2013-03-23 07:13:01 +11:00
install:
2016-03-24 00:15:21 +11:00
- pip install django==$DJANGO
- pip install -e .
2013-11-25 10:08:31 +11:00
script:
2016-03-24 00:15:21 +11:00
- coverage run runtests.py
after_success:
- codecov