superset/.travis.yml

23 lines
496 B
YAML
Raw Normal View History

2015-09-28 14:51:20 -04:00
language: python
python:
- "2.7"
2015-10-20 16:02:50 -04:00
- "3.4"
2015-10-20 01:27:13 -04:00
cache:
directories:
- $HOME/.wheelhouse/
2016-03-27 17:22:28 -04:00
before_install:
- rm -rf ~/.npm
- mkdir ~/.npm
2015-09-28 16:58:47 -04:00
install:
2016-03-27 18:50:22 -04:00
- pip wheel -w $HOME/.wheelhouse -f $HOME/.wheelhouse .
- pip install --find-links=$HOME/.wheelhouse --no-index .
2016-03-29 15:24:00 -04:00
- pip install --find-links=$HOME/.wheelhouse --no-index -r dev-reqs.txt
2016-03-29 00:55:58 -04:00
- cd caravel/assets
- npm install
2016-03-27 18:36:32 -04:00
- npm run lint
- npm run prod
2016-03-05 22:32:20 -05:00
- cd $TRAVIS_BUILD_DIR
2015-09-28 14:56:43 -04:00
script: bash run_tests.sh
2016-03-05 23:15:45 -05:00
after_success:
- coveralls