Skip to content

Commit

Permalink
TST add sphinxext to testing
Browse files Browse the repository at this point in the history
  • Loading branch information
jnothman committed Jun 5, 2014
1 parent 6f6a537 commit b20f1db
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ inplace:

test-code: in
$(NOSETESTS) -s -v sklearn
test-sphinxext:
$(NOSETESTS) -s -v doc/sphinxext/
test-doc:
$(NOSETESTS) -s -v doc/ doc/modules/ doc/datasets/ \
doc/developers doc/tutorial/basic doc/tutorial/statistical_inference \
Expand All @@ -31,7 +33,7 @@ test-coverage:
rm -rf coverage .coverage
$(NOSETESTS) -s -v --with-coverage sklearn

test: test-code test-doc
test: test-code test-sphinxext test-doc

trailing-spaces:
find sklearn -name "*.py" -exec perl -pi -e 's/[ \t]*$$//' {} \;
Expand Down
2 changes: 1 addition & 1 deletion continuous_integration/test_script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ if [[ "$COVERAGE" == "true" ]]; then
else
make test-code
fi
make test-doc
make test-doc test-sphinxext

0 comments on commit b20f1db

Please sign in to comment.