File tree Expand file tree Collapse file tree 3 files changed +4
-10
lines changed Expand file tree Collapse file tree 3 files changed +4
-10
lines changed Original file line number Diff line number Diff line change @@ -30,8 +30,6 @@ inplace:
30
30
31
31
test-code : in
32
32
$(NOSETESTS ) -s -v sklearn
33
- test-sphinxext :
34
- $(NOSETESTS ) -s -v doc/sphinxext/
35
33
test-doc :
36
34
ifeq ($(BITS ) ,64)
37
35
$(NOSETESTS) -s -v doc/*.rst doc/modules/ doc/datasets/ \
@@ -43,7 +41,7 @@ test-coverage:
43
41
rm -rf coverage .coverage
44
42
$(NOSETESTS ) -s -v --with-coverage sklearn
45
43
46
- test : test-code test-sphinxext test- doc
44
+ test : test-code test-doc
47
45
48
46
trailing-spaces :
49
47
find sklearn -name " *.py" -exec perl -pi -e ' s/[ \t]*$$//' {} \;
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ run_tests() {
41
41
42
42
# Test doc
43
43
cd $OLDPWD
44
- make test-doc test-sphinxext
44
+ make test-doc
45
45
}
46
46
47
47
if [[ " $RUN_FLAKE8 " == " true" ]]; then
Original file line number Diff line number Diff line change 22
22
THE SOFTWARE.
23
23
"""
24
24
25
- try :
26
- from docutils import nodes , utils
27
- from sphinx .util .nodes import split_explicit_title
28
- except ImportError :
29
- # Load lazily so that test-sphinxext does not require docutils dependency
30
- pass
25
+ from docutils import nodes , utils
26
+ from sphinx .util .nodes import split_explicit_title
31
27
32
28
__version__ = '0.2.0'
33
29
__author__ = 'Steven Loria'
You can’t perform that action at this time.
0 commit comments