Compare commits

..

No commits in common. "bc237f1aeff237565d599e07c279c076aabfd877" and "46fa756d943bb7fb934d99f9cf86319a604dad80" have entirely different histories.

3 changed files with 7 additions and 7 deletions

View File

@ -1,23 +1,23 @@
ENV=./.venv/bin/activate
PYTHON=./.venv/bin/python
all: ensure_env format build install test
format:
$(PYTHON) -m pip install shed
./.venv/bin/python -m pip install shed
. $(ENV) && python -m shed
ensure_env:
-@python3 -m venv .venv
build:
$(PyTHON) -m pip install build
$(PYTHON) -m build .
./.venv/bin/python -m pip install build
./.venv/bin/python -m build .
install:
$(PYTHON) -m pip install -e .
./.venv/bin/python -m pip install -e .
run:
$(PYTHON) -m ragnar.run
python -m ragnar.run
test:
$(PYTHON) -m unittest ragnar.tests
./.venv/bin/python -m unittest ragnar.tests

Binary file not shown.

Binary file not shown.