21 lines
372 B
Makefile
Raw Normal View History

2024-11-27 10:54:27 +01:00
all: ensure_env format build install test
2024-11-27 02:59:42 +01:00
format:
./.venv/bin/python -m pip install black
./.venv/bin/python -m black .
ensure_env:
-@python3 -m venv .venv
build:
./.venv/bin/python -m pip install build
./.venv/bin/python -m build .
install:
./.venv/bin/python -m pip install -e .
run:
2024-11-27 10:54:27 +01:00
python -m ragnar.run
test:
./.venv/bin/python -m unittest ragnar.tests