We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a54fbf commit b5bc6b2Copy full SHA for b5bc6b2
Makefile
@@ -81,7 +81,7 @@ pydocstyle: ## run pydocstyle check
81
docs: ## build document
82
@echo "Sphinx build start."
83
@cd docs && \
84
- sphinx-build -q -E -W -b html . _build/html && \
+ sphinx-build -q -E -W -j 4 -b html . _build/html && \
85
cd ../
86
@echo "Sphinx build done."
87
dodo.py
@@ -38,7 +38,7 @@ def task_pydocstyle():
38
def task_docs():
39
"""Build sphinx document."""
40
return {
41
- 'actions': ['sphinx-build -q -W -E -b html docs docs/_build/html'],
+ 'actions': ['sphinx-build -q -W -E -j 4 -b html docs docs/_build/html'],
42
}
43
44
0 commit comments