CloudBender/Makefile

22 lines
499 B
Makefile
Raw Normal View History

2021-09-23 17:27:06 +00:00
REGISTRY := public.ecr.aws/zero-downtime
2022-07-15 12:35:27 +00:00
IMAGE := cloudbender
2022-02-08 12:49:08 +00:00
REGION := us-east-1
2022-10-13 13:46:00 +00:00
include .ci/podman.mk
2021-09-23 17:27:06 +00:00
2022-07-15 12:38:22 +00:00
pytest:
2022-02-22 10:04:29 +00:00
flake8 cloudbender tests
TEST=True pytest --log-cli-level=DEBUG
2022-10-13 13:46:00 +00:00
pyclean:
rm -rf .cache build .coverage .eggs cloudbender.egg-info .pytest_cache dist
2022-07-15 12:38:22 +00:00
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