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.
1 parent 96feaa0 commit e56bd99Copy full SHA for e56bd99
1 file changed
Justfile
@@ -17,10 +17,10 @@ bench-cmp:
17
bench:
18
uv run pytest bench --benchmark-save base
19
20
-docs: ## generate Sphinx HTML documentation, including API docs
21
- make -C docs clean
22
- make -C docs doctest
23
- make -C docs html
+docs output_dir="_build": ## generate Sphinx HTML documentation, including API docs
+ make -C docs -e BUILDDIR={{output_dir}} clean
+ make -C docs -e BUILDDIR={{output_dir}} doctest
+ make -C docs -e BUILDDIR={{output_dir}} html
24
25
htmllive: docs ## compile the docs watching for changes
26
make -C docs htmllive
0 commit comments