Files
dev-templates/makefiles/makefile-python
T
2025-12-10 20:39:40 +01:00

14 lines
175 B
Plaintext

.PHONY: all run test
SRC := ./src
VENV := .venv
RUNNER := $(VENV)/bin/python
TESTER := $(VENV)/bin/pytest
run:
$(RUNNER) $(SRC)/main.py
test:
$(TESTER) $(SRC)/main.py