fids/auth-domain/user-manager/src/.cicd/test.sh

24 lines
470 B
Bash
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/bin/bash -e
if [ "${TEST_TARGET:-}" = "INTEGRATION" ]; then
# Execute your command here
/usr/src/app/.venv/bin/gunicorn manage:app
else
## pytest
python -m pytest "src/tests" --junitxml=report.xml
## Coverage
python -m pytest "src/tests" -p no:warnings --cov="src" --cov-report xml
## Linting
flake8 src --extend-ignore E221
# black src --check
# isort src --check
## Security
# bandit -c .bandit.yml -r .
fi