We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe2502d commit 3275f77Copy full SHA for 3275f77
.travis.yml
@@ -53,6 +53,16 @@ install:
53
54
script:
55
- jupyter kernelspec list
56
+ - |
57
+ symlinks=$(find . -type l| grep -v './node_modules/' | grep -v './git-hooks')
58
+ if [[ $(echo $symlinks) ]]; then
59
+ echo "Repository contains symlinks which won't work on windows:"
60
+ echo $symlinks
61
+ echo ""
62
+ false
63
+ else
64
+ true
65
+ fi
66
- 'if [[ $GROUP == js* ]]; then travis_retry python -m notebook.jstest ${GROUP:3}; fi'
67
- 'if [[ $GROUP == python ]]; then nosetests -v --with-coverage --cover-package=notebook notebook; fi'
68
- |
@@ -64,6 +74,7 @@ script:
74
exit $EXIT_STATUS
75
fi
76
77
+
78
matrix:
79
include:
69
80
- python: 3.4
0 commit comments