superset/.travis.yml

24 lines
480 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"
- "3.5"
2015-10-20 01:27:13 -04:00
cache:
directories:
- $HOME/.wheelhouse/
2016-03-27 17:22:28 -04:00
before_install:
2016-04-03 02:24:36 -04:00
- npm install -g npm@'>=2.7.1'
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 .
- pip install -r dev-reqs.txt
2016-03-29 00:55:58 -04:00
- cd caravel/assets
2016-04-03 02:20:05 -04:00
- npm --version
- 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