We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
make docs
make docs-preview
1 parent ccd5d2f commit ce2267eCopy full SHA for ce2267e
Makefile
@@ -1,4 +1,4 @@
1
-.PHONY: help clean% check% format% lint test pyright playwright% install% testrail% coverage release
+.PHONY: help clean% check% format% docs% lint test pyright playwright% install% testrail% coverage release
2
.DEFAULT_GOAL := help
3
4
define BROWSER_PYSCRIPT
@@ -92,6 +92,14 @@ format-isort:
92
@echo "-------- Sorting imports with isort --------"
93
isort .
94
95
+docs: ## docs: build docs with quartodoc
96
+ @echo "-------- Building docs with quartodoc --------"
97
+ @cd docs && make quartodoc
98
+
99
+docs-preview: ## docs: preview docs in browser
100
+ @echo "-------- Previewing docs in browser --------"
101
+ @cd docs && make serve
102
103
# Default `SUB_FILE` to empty
104
SUB_FILE:=
105
0 commit comments