dpaste/.travis.yml

23 lines
252 B
YAML
Raw Normal View History

2013-03-22 21:13:01 +01:00
language: python
2013-03-22 21:13:01 +01:00
python:
2013-11-25 23:10:24 +01:00
- 2.7
2016-03-23 14:15:21 +01:00
- 3.5
env:
2016-03-23 14:15:21 +01:00
- DJANGO=1.8.*
- DJANGO=1.9.*
2016-03-23 14:15:21 +01:00
before_install:
- pip install codecov
2013-03-22 21:13:01 +01:00
install:
2016-03-23 14:15:21 +01:00
- pip install django==$DJANGO
- pip install -e .
2013-11-25 00:08:31 +01:00
script:
2016-03-23 14:15:21 +01:00
- coverage run runtests.py
after_success:
- codecov