From d075c04e2a6f1abb97244c7790ba06a882eadaf3 Mon Sep 17 00:00:00 2001 From: Fischer Moseley <42497969+fischermoseley@users.noreply.github.com> Date: Sun, 21 Jan 2024 00:47:14 -0800 Subject: [PATCH] update makefile to not require python scripts on PATH --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index c22f0d1..229247e 100644 --- a/Makefile +++ b/Makefile @@ -1,9 +1,9 @@ .PHONY: test format clean serve_docs test: - pytest + python3 -m pytest format: - black . + python3 -m black . clean: git clean -Xdf