Merge pull request #168 from mistercrunch/travis_npm

Getting travis to build the npm related stuff
This commit is contained in:
Maxime Beauchemin 2016-03-06 08:07:37 -05:00
commit a53dbfcfaa
2 changed files with 9 additions and 4 deletions

View File

@ -9,7 +9,12 @@ install:
- 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
# command to run tests
- cd panoramix/assets
- npm install
- npm run prod
- cd $TRAVIS_BUILD_DIR
script: bash run_tests.sh
after_success: coveralls
after_success:
- coveralls
- cd panoramix/assets
- npm run lint

View File

@ -42,7 +42,7 @@ class memoized(object):
def list_minus(l, minus):
"""Returns l without what is in minus
>>> list_without([1, 2, 3], [2])
>>> list_minus([1, 2, 3], [2])
[1, 3]
"""
return [o for o in l if o not in minus]