Skip to content

Commit c7129c1

Browse files
committed
Merge remote-tracking branch 'refs/remotes/origin/agoose77/fix-update-config' into agoose77/fix-update-config
2 parents 18b1041 + f0482f7 commit c7129c1

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

Diff for: pyproject.toml

-2
Original file line numberDiff line numberDiff line change
@@ -89,5 +89,3 @@ test = [
8989
[project.urls]
9090
Repository = "https://github.com/executablebooks/sphinx-book-theme"
9191
Documentation = "https://sphinx-book-theme.readthedocs.io/"
92-
93-

Diff for: tests/test_build.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import os
22
from pathlib import Path
33
from shutil import copytree, rmtree
4-
from subprocess import check_call
54
from importlib.metadata import version
65
from packaging.version import parse
76

@@ -65,7 +64,9 @@ def _func(src_folder, **kwargs):
6564

6665
def test_parallel_build(sphinx_build_factory):
6766
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
6970
assert (sphinx_build.outdir / "index.html").exists(), sphinx_build.outdir.glob("*")
7071

7172

0 commit comments

Comments
 (0)