File tree 2 files changed +3
-4
lines changed
2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -89,5 +89,3 @@ test = [
89
89
[project .urls ]
90
90
Repository = " https://github.com/executablebooks/sphinx-book-theme"
91
91
Documentation = " https://sphinx-book-theme.readthedocs.io/"
92
-
93
-
Original file line number Diff line number Diff line change 1
1
import os
2
2
from pathlib import Path
3
3
from shutil import copytree , rmtree
4
- from subprocess import check_call
5
4
from importlib .metadata import version
6
5
from packaging .version import parse
7
6
@@ -65,7 +64,9 @@ def _func(src_folder, **kwargs):
65
64
66
65
def test_parallel_build (sphinx_build_factory ):
67
66
sphinx_build = sphinx_build_factory ("parallel-build" , parallel = 2 ) # type: SphinxBuild
68
- sphinx_build .build (assert_pass = True , assert_no_warnings = False ) # TODO: filter these warnings
67
+ sphinx_build .build (
68
+ assert_pass = True , assert_no_warnings = False
69
+ ) # TODO: filter these warnings
69
70
assert (sphinx_build .outdir / "index.html" ).exists (), sphinx_build .outdir .glob ("*" )
70
71
71
72
You can’t perform that action at this time.
0 commit comments