Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.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
.DEFAULT_GOAL := help

define BROWSER_PYSCRIPT
Expand Down Expand Up @@ -92,6 +92,14 @@ format-isort:
@echo "-------- Sorting imports with isort --------"
isort .

docs: ## docs: build docs with quartodoc
@echo "-------- Building docs with quartodoc --------"
@cd docs && make quartodoc

docs-preview: ## docs: preview docs in browser
@echo "-------- Previewing docs in browser --------"
@cd docs && make serve

# Default `SUB_FILE` to empty
SUB_FILE:=

Expand Down