Skip to content

Commit

Permalink
chore: Optimize Makefile for test target execution
Browse files Browse the repository at this point in the history
- 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
  • Loading branch information
johnnyhuy committed Apr 4, 2024
1 parent fd713f2 commit 5d46dc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 5d46dc6

Please sign in to comment.