dpaste/.travis.yml
2017-04-29 08:53:14 +02:00

26 lines
347 B
YAML

language: python
python:
- 2.7
- 3.4
- 3.5
- 3.6
env:
- DJANGO: django>=1.8,<1.9
- DJANGO: django>=1.9,<1.10
- DJANGO: django>=1.10,<1.11
- DJANGO: django>=1.11,<1.12
before_install:
- pip install codecov
install:
- pip install $DJANGO
- pip install -e .
script:
- coverage run runtests.py
after_success:
- codecov