Skip to content

Commit 48847f2

Browse files
fix
1 parent 2969168 commit 48847f2

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

exasol/toolbox/nox/_documentation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ def _docs_list_links(doc_config: Path):
124124
def _docs_links_check(doc_config: Path, args):
125125
with tempfile.TemporaryDirectory() as path:
126126
tmpdir = Path(path)
127-
sp = subprocess.run(
127+
sp = subprocess.run( # nosec
128128
[
129129
"sphinx-build",
130130
"-b",

test/unit/documentation_test.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,4 @@ def test_docs_links_check(index, file2, expected2, tmp_path):
9191
args = MagicMock
9292
args.output = None
9393
actual = _docs_links_check(tmp_path / "doc", args)
94-
print("______________________")
95-
print(actual)
96-
print("______________________")
9794
assert actual == expected2

0 commit comments

Comments
 (0)