Skip to content

Commit

Permalink
Sort out dependencies in travis/tox (apache#4186)
Browse files Browse the repository at this point in the history
* Make travis a bit more lean

* Bump npm to 5.6.0
  • Loading branch information
mistercrunch committed Jan 11, 2018
1 parent 68fbde8 commit 70616f7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
5 changes: 0 additions & 5 deletions .travis.yml
Expand Up @@ -10,7 +10,6 @@ cache:
env:
global:
- TRAVIS_CACHE=$HOME/.travis_cache/
- TRAVIS_NODE_VERSION="8.8.1"
matrix:
- TOX_ENV=flake8
- TOX_ENV=javascript
Expand All @@ -19,8 +18,6 @@ env:
- TOX_ENV=py34-sqlite
- TOX_ENV=py27-mysql
- TOX_ENV=py27-sqlite
before_install:
- npm install -g npm@'>=5.4.1'
before_script:
- mysql -u root -e "DROP DATABASE IF EXISTS superset; CREATE DATABASE superset DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci"
- mysql -u root -e "CREATE USER 'mysqluser'@'localhost' IDENTIFIED BY 'mysqluserpassword';"
Expand All @@ -31,6 +28,4 @@ before_script:
install:
- pip install --upgrade pip
- pip install tox tox-travis
- pip install --upgrade flake8
- 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 $TRAVIS_NODE_VERSION
script: tox -e $TOX_ENV
8 changes: 7 additions & 1 deletion tox.ini
Expand Up @@ -29,6 +29,9 @@ find_links =
deps =
wheel
coveralls
whitelist_externals =
pip
npm
passenv =
HOME
TRAVIS
Expand All @@ -48,6 +51,7 @@ commands =

[testenv:flake8]
commands =
pip install --upgrade flake8
flake8
deps =
flake8
Expand All @@ -56,7 +60,9 @@ deps =
flake8-quotes

[testenv:javascript]
commands = {toxinidir}/superset/assets/js_build.sh
commands =
npm install -g npm@'>=5.6.0'
{toxinidir}/superset/assets/js_build.sh

[testenv:pylint]
commands =
Expand Down

0 comments on commit 70616f7

Please sign in to comment.