Skip to content

Commit

Permalink
Merge pull request #3227 from Carreau/nsymlink
Browse files Browse the repository at this point in the history
No symlink
  • Loading branch information
takluyver authored Jan 17, 2018
2 parents fe2502d + 3275f77 commit 6526a19
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
- |
Expand All @@ -64,6 +74,7 @@ script:
exit $EXIT_STATUS
fi
matrix:
include:
- python: 3.4
Expand Down

0 comments on commit 6526a19

Please sign in to comment.