From d58e43eed3f26c84110d7f4bf27ce00d616c58dc Mon Sep 17 00:00:00 2001 From: Eugene Yurtsev Date: Thu, 16 Nov 2023 16:38:56 -0500 Subject: [PATCH] x (#22) --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Makefile b/Makefile index 1c8badea..8c784a4a 100644 --- a/Makefile +++ b/Makefile @@ -16,6 +16,12 @@ test: test_watch: poetry run ptw . -- $(TEST_FILE) +build_docs: + poetry run sphinx-build "./docs/source" "./docs/build" + +clean_docs: + rm -rf ./docs/build + ###################### # LINTING AND FORMATTING ######################