Merge pull request #1051 from takluyver/travis-nosetests-v

Run nosetests with verbose flag on Travis
Matthias Bussonnier 10 years ago
commit 4c50d6acaa

@ -24,7 +24,7 @@ install:
- pip install -f travis-wheels/wheelhouse file://$PWD#egg=notebook[test] coveralls
script:
- 'if [[ $GROUP == js* ]]; then python -m notebook.jstest ${GROUP:3}; fi'
- 'if [[ $GROUP == python ]]; then nosetests --with-coverage --cover-package=notebook notebook; fi'
- 'if [[ $GROUP == python ]]; then nosetests -v --with-coverage --cover-package=notebook notebook; fi'
matrix:
include:
- python: 3.3

@ -93,7 +93,7 @@ RUN BUILD_DEPS="nodejs-legacy npm" && \
-o APT::AutoRemove::RecommendsImportant=false -o APT::AutoRemove::SuggestsImportant=false $BUILD_DEPS
# Run tests.
RUN pip3 install --no-cache-dir notebook[test] && nosetests notebook
RUN pip3 install --no-cache-dir notebook[test] && nosetests -v notebook
# Add a notebook profile.
RUN mkdir -p -m 700 /root/.jupyter/ && \

Loading…
Cancel
Save