add to doc requirements.txt file

This commit is contained in:
Jiaqi Liu 2017-08-25 12:21:27 -07:00
parent d42c65afe1
commit 95bd9df2af
2 changed files with 10 additions and 2 deletions

View File

@ -19,6 +19,7 @@ env:
- GROUP=js/base
- GROUP=js/services
- GROUP=js/tree
- GROUP=doc
before_install:
- pip install --upgrade pip
@ -30,10 +31,14 @@ before_install:
- npm upgrade -g npm
- npm install
- |
if [[ $GROUP == js* ]]; then
if [[ $GROUP == js* ]]; then
npm install -g casperjs@1.1.3 phantomjs-prebuilt@2.1.7
fi
- git clone --quiet --depth 1 https://github.com/minrk/travis-wheels travis-wheels
- |
if [[ $GROUP == docs ]]; then
pip install doc-requirements.txt
fi
install:
- pip install -f travis-wheels/wheelhouse file://$PWD#egg=notebook[test]
@ -43,6 +48,7 @@ install:
script:
- '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'
- 'if [[ $GROUP == doc ]]; then make -C docs/ html; fi'
matrix:
include:

View File

@ -1,2 +1,4 @@
sphinx>=1.3.6
sphinx-rtd-theme
sphinx-rtd-theme
nbsphinx==0.2.14
pandoc