mybuddy/.travis.yml

26 lines
622 B
YAML
Raw Normal View History

2017-10-22 21:32:43 +00:00
sudo: false
dist: xenial
2017-10-22 21:32:43 +00:00
language: python
cache:
pip: true
directories:
- node_modules
python:
- 3.6
2019-05-17 04:42:26 +00:00
- 3.7
- 3.8
2017-12-01 04:10:08 +00:00
env:
- DJANGO_SETTINGS_MODULE="babybuddy.settings.travis"
2017-10-22 21:32:43 +00:00
install:
- rm -rf ~/.nvm && git clone https://github.com/creationix/nvm.git ~/.nvm && (cd ~/.nvm && git checkout `git describe --abbrev=0 --tags`) && source ~/.nvm/nvm.sh && nvm install 8
- npm install -g gulp-cli && npm install
- pip install pipenv && pipenv install --dev
before_script:
- gulp lint
script:
- gulp coverage
2017-10-22 21:32:43 +00:00
after_success:
- pipenv run coveralls
notifications:
email: false