Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 450 Bytes

File metadata and controls

28 lines (21 loc) · 450 Bytes

install:

python3.12 -m venv ./venv
source ./venv/bin/activate
pip install -e .
pip install -r requirements-dev.txt

or...

uv venv --python=3.12 ./venv
uv pip install --python=./venv/bin/python -e .
uv pip install --python=./venv/bin/python -r requirements-dev.txt

test:

PYTHONPATH="$PWD" pytest -s test

or...

(builtin cd test && PYTHONPATH="$(dirname "$PWD")" python -m unittest test*)