ragnar/Makefile
retoor 42eca170a6
Some checks failed
Build Ragnar anti spam bot / Build (push) Failing after 1m1s
Added unit test and regex
2024-11-27 10:54:27 +01:00

21 lines
372 B
Makefile

all: ensure_env format build install test
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:
python -m ragnar.run
test:
./.venv/bin/python -m unittest ragnar.tests