chore: add release command to justfile

This commit is contained in:
Deepak Mallubhotla 2025-02-22 13:07:18 -06:00
parent 1bc865c062
commit 5e1dd34881
Signed by: deepak
GPG Key ID: BEBAEBF28083E022

View File

@ -59,14 +59,14 @@ fmt:
find tests -type f -name "*.py" -exec sed -i -e 's/ /\t/g' {} \; find tests -type f -name "*.py" -exec sed -i -e 's/ /\t/g' {} \;
# release the app, checking that our working tree is clean and ready for release, optionally takes target version # release the app, checking that our working tree is clean and ready for release, optionally takes target version
# release version="": release version="":
# #!/usr/bin/env bash #!/usr/bin/env bash
# set -euxo pipefail set -euxo pipefail
# if [[ -n "{{version}}" ]]; then if [[ -n "{{version}}" ]]; then
# ./scripts/release.sh {{version}} ./scripts/release.sh {{version}}
# else else
# ./scripts/release.sh ./scripts/release.sh
# fi fi
# htmlcov: # htmlcov:
# poetry run pytest --cov-report=html # poetry run pytest --cov-report=html