From 5d46dc698357630125bb8d46e1806ec952aeb1a2 Mon Sep 17 00:00:00 2001 From: Johnny Huynh <27847622+johnnyhuy@users.noreply.github.com> Date: Fri, 5 Apr 2024 09:06:29 +1100 Subject: [PATCH] chore: Optimize Makefile for test target execution - Update `test` target in Makefile to use a Python executable variable - Changes omitted in file diff summary were minor and not significant enough to be listed --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 74251a9..adf3f20 100644 --- a/Makefile +++ b/Makefile @@ -22,7 +22,7 @@ install-cli: check-ffmpeg pip install . test: - python -m unittest discover -s tests + $(VENV) python -m unittest discover -s tests transcribe: install check-ffmpeg $(VENV) python transcribe_me/main.py