Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/airbnb/caravel into druid…
Browse files Browse the repository at this point in the history
…_thetasketch
  • Loading branch information
axeisghost committed Jun 13, 2016
2 parents f3e8b5d + 9ed8c32 commit 7da9a90
Show file tree
Hide file tree
Showing 34 changed files with 3,662 additions and 1,840 deletions.
40 changes: 24 additions & 16 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,23 +1,31 @@
language: python
python:
- "2.7"
- "3.4"
- "3.5"
addons:
apt:
sources:
- deadsnakes
packages:
- python3.5
cache:
directories:
- $HOME/.wheelhouse/
env:
global:
- TRAVIS_CACHE=$HOME/.travis_cache/
matrix:
#- TOX_ENV=py27-mysql
- TOX_ENV=py27-sqlite
- TOX_ENV=py27-postgres
- TOX_ENV=py34-sqlite
- TOX_ENV=py34-mysql
- TOX_ENV=py34-postgres
- TOX_ENV=javascript
before_install:
- npm install -g npm@'>=2.7.1'
before_script:
- mysql -e 'drop database if exists caravel; create database caravel DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci' -u root
- psql -c 'create database caravel;' -U postgres
- export PATH=${PATH}:/tmp/hive/bin
install:
- pip wheel -w $HOME/.wheelhouse -f $HOME/.wheelhouse .
- pip install --find-links=$HOME/.wheelhouse --no-index .
- pip install -r dev-reqs.txt
- cd caravel/assets
- npm --version
- npm install
- npm run lint
- npm run prod
- cd $TRAVIS_BUILD_DIR
script: bash run_tests.sh
after_success:
- coveralls
- pip install --upgrade pip
- pip install tox tox-travis
script: tox -e $TOX_ENV
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ Caravel provides:
made available to the user
* Deep integration with Druid allows for Caravel to stay blazing fast while
slicing and dicing large, realtime datasets
* Fast loading dashboards with configurable caching


Database Support
Expand Down
Loading

0 comments on commit 7da9a90

Please sign in to comment.