mirror of
https://github.com/agresdominik/dev-templates.git
synced 2026-04-21 18:05:49 +00:00
14 lines
175 B
Plaintext
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
|