File tree Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 19
19
- GROUP=js/base
20
20
- GROUP=js/services
21
21
- GROUP=js/tree
22
+ - GROUP=docs
22
23
23
24
before_install :
24
25
- pip install --upgrade pip
@@ -30,10 +31,14 @@ before_install:
30
31
- npm upgrade -g npm
31
32
- npm install
32
33
- |
33
- if [[ $GROUP == js* ]]; then
34
+ if [[ $GROUP == js* ]]; then
34
35
35
36
fi
36
37
- git clone --quiet --depth 1 https://github.com/minrk/travis-wheels travis-wheels
38
+ - |
39
+ if [[ $GROUP == docs ]]; then
40
+ pip install -r docs/doc-requirements.txt
41
+ fi
37
42
38
43
install :
39
44
- pip install -f travis-wheels/wheelhouse file://$PWD#egg=notebook[test]
@@ -43,13 +48,17 @@ install:
43
48
script :
44
49
- ' if [[ $GROUP == js* ]]; then travis_retry python -m notebook.jstest ${GROUP:3}; fi'
45
50
- ' if [[ $GROUP == python ]]; then nosetests -v --with-coverage --cover-package=notebook notebook; fi'
51
+ - ' if [[ $GROUP == docs ]]; then make -C docs/ html; fi'
46
52
47
53
matrix :
48
54
include :
49
55
- python : 3.3
50
56
env : GROUP=python
51
57
- python : 3.4
52
58
env : GROUP=python
59
+ exclude :
60
+ - python : 2.7
61
+ env : GROUP=docs
53
62
54
63
after_success :
55
64
- codecov
Original file line number Diff line number Diff line change 1
1
sphinx>=1.3.6
2
- sphinx-rtd-theme
2
+ sphinx-rtd-theme
3
+ nbsphinx==0.2.14
You can’t perform that action at this time.
0 commit comments