wagtail-longclaw/.travis.yml

27 wiersze
620 B
YAML
Czysty Zwykły widok Historia

2017-02-03 10:04:57 +00:00
# Config file for automatic testing at travis-ci.org
language: python
2018-03-23 21:33:15 +00:00
cache: pip
2017-02-03 10:04:57 +00:00
matrix:
2018-03-23 21:33:15 +00:00
include:
- env: TOX_ENV=py34-django-111
python: 3.4
- env: TOX_ENV=py35-django-111
python: 3.5
- env: TOX_ENV=py36-django-111
python: 3.6
2017-02-03 10:04:57 +00:00
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
2017-02-10 19:01:12 +00:00
- . $HOME/.nvm/nvm.sh
- nvm install stable
- nvm use stable
2017-02-10 18:48:07 +00:00
- pip install -r requirements_test.txt
- cd longclaw/client && npm install
2017-02-03 10:04:57 +00:00
# command to run tests using coverage, e.g. python setup.py test
2018-03-23 21:54:36 +00:00
script: tox -e $TOX_ENV
2017-02-03 10:04:57 +00:00
after_success:
- codecov -e TOX_ENV