From 31428725334b7e9a5df017f1c7216759a215971f Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sun, 22 Mar 2026 05:48:54 -0400 Subject: [PATCH] Add root Makefile with docs and test targets Co-Authored-By: Claude Opus 4.6 (1M context) --- Makefile | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..e7f4406 --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +.PHONY: docs test + +docs: + uv run --group docs sphinx-build -b html docs docs/_build/html + +test: + uv run pytest test_pytheory.py -v