CloudBender/Makefile
Stefan Reimer 6d3bf4767c
All checks were successful
ZeroDownTime/CloudBender/pipeline/head This commit looks good
Fix CI pipeline
2023-11-22 18:04:19 +00:00

22 lines
499 B
Makefile

REGISTRY := public.ecr.aws/zero-downtime
IMAGE := cloudbender
REGION := us-east-1
include .ci/podman.mk
pytest::
flake8 cloudbender tests
TEST=True pytest --log-cli-level=DEBUG
clean::
rm -rf .cache build .coverage .eggs cloudbender.egg-info .pytest_cache dist
pybuild:
hatchling build
test_upload: pybuild
twine upload --repository-url https://test.pypi.org/legacy/ --non-interactive dist/cloudbender-*.whl
upload: pybuild
twine upload -r pypi --non-interactive dist/cloudbender-*.whl