sns-alert-hub/run_tests.sh
Stefan Reimer ef69c37109
Some checks failed
ZeroDownTime/sns-alert-hub/pipeline/head There was a failure building this commit
Make tests work again, use new CI flow
2023-08-14 10:22:11 +00:00

18 lines
429 B
Bash
Executable File

#!/bin/sh -ex
IMAGE=$1
ctr=$(buildah from $IMAGE)
trap "buildah rm $ctr" EXIT
buildah copy $ctr dev-requirements.txt .flake8 .
buildah copy $ctr aws-lambda-rie
buildah copy $ctr tests/ tests/
buildah run $ctr pip install -r dev-requirements.txt --target .
buildah run $ctr python -m flake8 app.py
buildah run $ctr python -m codespell_lib app.py
buildah run $ctr python -m pytest tests -c tests/pytest.ini --capture=tee-sys