Merge pull request #3227 from Carreau/nsymlink

No symlink
This commit is contained in:
Thomas Kluyver 2018-01-17 17:06:18 +00:00 committed by GitHub
commit 6526a19c0b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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