File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ language: python
4
4
cache :
5
5
directories :
6
6
- $HOME/.cache/bower
7
+ - $HOME/.cache/pip
7
8
python :
8
9
- 3.6
9
10
- 2.7
@@ -42,10 +43,16 @@ before_install:
42
43
43
44
install :
44
45
- pip install -f travis-wheels/wheelhouse file://$PWD#egg=notebook[test]
46
+ - |
47
+ if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
48
+ # Work around https://github.com/ipython/ipykernel/issues/288
49
+ pip install ipykernel==4.6.1
50
+ fi
45
51
- wget https://github.com/jgm/pandoc/releases/download/1.19.1/pandoc-1.19.1-1-amd64.deb && sudo dpkg -i pandoc-1.19.1-1-amd64.deb
46
52
47
53
48
54
script :
55
+ - jupyter kernelspec list
49
56
- ' if [[ $GROUP == js* ]]; then travis_retry python -m notebook.jstest ${GROUP:3}; fi'
50
57
- ' if [[ $GROUP == python ]]; then nosetests -v --with-coverage --cover-package=notebook notebook; fi'
51
58
- |
You can’t perform that action at this time.
0 commit comments