Make sure repository does not contain symlink

This commit is contained in:
Matthias Bussonnier 2018-01-17 07:16:39 -08:00
parent fe2502d81e
commit 3275f77fd4

View File

@ -53,6 +53,16 @@ install:
script:
- jupyter kernelspec list
- |
symlinks=$(find . -type l| grep -v './node_modules/' | grep -v './git-hooks')
if [[ $(echo $symlinks) ]]; then
echo "Repository contains symlinks which won't work on windows:"
echo $symlinks
echo ""
false
else
true
fi
- 'if [[ $GROUP == js* ]]; then travis_retry python -m notebook.jstest ${GROUP:3}; fi'
- 'if [[ $GROUP == python ]]; then nosetests -v --with-coverage --cover-package=notebook notebook; fi'
- |
@ -64,6 +74,7 @@ script:
exit $EXIT_STATUS
fi
matrix:
include:
- python: 3.4