15 lines
197 B
Makefile
15 lines
197 B
Makefile
PYTHON := .venv/bin/python
|
|
PIP := .venv/bin/pip
|
|
|
|
.PHONY: venv install test
|
|
|
|
venv:
|
|
python3 -m venv .venv
|
|
$(PIP) install -e .
|
|
|
|
install: venv
|
|
$(PIP) install -e .[store]
|
|
|
|
test:
|
|
$(PYTHON) -m pytest
|