Skip to content

Commit f8cf4fa

Browse files
authored
Docs: Ignore build folder in doc8 (#676)
When documentation has been built and quality check is run afterwards, it always fails because of errors in the docs/_build/ folder. This is because doc8 is also scanning the generated documentation files for errors. This commit is adding an ignore-parameter to the call to doc8. With this the build folder is ignored.
1 parent 991948b commit f8cf4fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,4 +53,4 @@ skip_install = true
5353
deps =
5454
sphinx
5555
doc8
56-
commands = doc8 docs/
56+
commands = doc8 --ignore-path docs/_build/ docs/

0 commit comments

Comments
 (0)