22 lines
410 B
Makefile
Raw Normal View History

2024-11-27 14:28:30 +00:00
all: ensure_env format build install test
format:
./.venv/bin/python -m black .
ensure_env:
-@python3 -m venv .venv
./.venv/bin/python -m pip install black
./.venv/bin/python -m pip install build
build:
./.venv/bin/python -m build .
install:
./.venv/bin/python -m pip install -e .
run:
2024-12-01 05:14:33 +00:00
./.venv/bin/zhurnal "ping google.nl" "watch -n 1 ps aux"
2024-11-27 14:28:30 +00:00
test:
./.venv/bin/python -m unittest zhurnal.tests