24 lines
511 B
Makefile
24 lines
511 B
Makefile
REGISTRY := public.ecr.aws/zero-downtime
|
|
IMAGE := sns-alert-hub
|
|
REGION := us-east-1
|
|
|
|
include .ci/podman.mk
|
|
|
|
SOURCE := app.py tests/test_aws-lambda-rie.py
|
|
|
|
test:: aws-lambda-rie
|
|
./run_tests.sh "$(IMAGE):$(TAG)-$(_ARCH)"
|
|
|
|
fmt::
|
|
autopep8 -i -a $(SOURCE)
|
|
|
|
lint::
|
|
flake8 $(SOURCE)
|
|
codespell $(SOURCE)
|
|
|
|
clean::
|
|
rm -rf .pytest_cache __pycache__ aws-lambda-rie
|
|
|
|
aws-lambda-rie:
|
|
wget https://github.com/aws/aws-lambda-runtime-interface-emulator/releases/latest/download/aws-lambda-rie && chmod 0755 aws-lambda-rie
|