superset/.travis.yml

16 lines
357 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/
2015-09-28 16:58:47 -04:00
install:
2015-10-20 01:27:13 -04:00
- pip wheel -w $HOME/.wheelhouse -f $HOME/.wheelhouse -r requirements.txt
- pip install --find-links=$HOME/.wheelhouse --no-index -rrequirements.txt
- python setup.py install
2015-09-28 16:58:47 -04:00
2015-09-28 14:51:20 -04:00
# command to run tests
2015-09-28 14:56:43 -04:00
script: bash run_tests.sh
2015-09-28 16:58:47 -04:00
after_success: coveralls