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 ######################