dpaste/.travis.yml

28 lines
405 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:
- 3.4
2016-03-24 00:15:21 +11:00
- 3.5
2017-01-19 22:16:20 +11:00
- 3.6
- 3.7-dev
env:
2018-03-12 21:59:38 +11:00
- DJANGO: django>=1.11,<2.0
- DJANGO: django>=2.0
before_install:
2018-04-28 21:07:53 +10:00
- pip install coverage codacy-coverage
2018-03-12 23:12:19 +11:00
- coverage erase
2013-03-23 07:13:01 +11:00
install:
2018-04-29 19:23:54 +10:00
- npm install
- pip install $DJANGO
2018-03-12 23:12:19 +11:00
- pip install -e .[standalone]
2013-11-25 10:08:31 +11:00
script:
2018-03-12 23:12:19 +11:00
- coverage run --append runtests.py
2016-03-24 00:15:21 +11:00
after_success:
2018-04-28 21:06:01 +10:00
- coverage xml
- python-codacy-coverage -r coverage.xml