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
|
|
|
|
2023-11-22 18:04:19 +00:00
|
|
|
pytest::
|
2022-02-22 10:04:29 +00:00
|
|
|
flake8 cloudbender tests
|
2019-06-18 16:48:39 +00:00
|
|
|
TEST=True pytest --log-cli-level=DEBUG
|
2019-02-07 22:05:33 +00:00
|
|
|
|
2023-10-27 13:50:07 +00:00
|
|
|
clean::
|
2019-09-02 11:13:40 +00:00
|
|
|
rm -rf .cache build .coverage .eggs cloudbender.egg-info .pytest_cache dist
|
2019-06-18 16:48:39 +00:00
|
|
|
|
2022-07-15 12:38:22 +00:00
|
|
|
pybuild:
|
2022-06-28 11:15:45 +00:00
|
|
|
hatchling build
|
2019-02-07 22:05:33 +00:00
|
|
|
|
2022-06-30 15:42:49 +00:00
|
|
|
test_upload: pybuild
|
|
|
|
twine upload --repository-url https://test.pypi.org/legacy/ --non-interactive dist/cloudbender-*.whl
|
2019-02-07 22:05:33 +00:00
|
|
|
|
2022-06-30 15:42:49 +00:00
|
|
|
upload: pybuild
|
|
|
|
twine upload -r pypi --non-interactive dist/cloudbender-*.whl
|