dpaste/.travis.yml
2018-03-12 13:12:19 +01:00

30 lines
384 B
YAML

language: python
python:
- 2.7
- 3.4
- 3.5
- 3.6
env:
- DJANGO: django>=1.11,<2.0
- DJANGO: django>=2.0
matrix:
exclude:
- python: "2.7"
env: DJANGO=2.0.*
before_install:
- pip install codecov
- coverage erase
install:
- pip install $DJANGO
- pip install -e .[standalone]
script:
- coverage run --append runtests.py
after_success:
- codecov