Fix test-integration step

This commit is contained in:
Santiago Lo Coco 2023-10-19 10:30:03 -03:00
parent cca3b135cf
commit 69d190afe6
2 changed files with 2 additions and 3 deletions

View File

@ -8,4 +8,4 @@ done
echo "PostgreSQL started"
python manage.py run -h 0.0.0.0
python src/api/main.py run -h 0.0.0.0

View File

@ -2,8 +2,7 @@
if [ "${TEST_TARGET:-}" = "INTEGRATION" ]; then
# Execute your command here
/usr/src/app/.venv/bin/gunicorn manage:app
usr/src/app/.venv/bin/gunicorn src.api.main:app --worker-class uvicorn.workers.UvicornWorker
else
## pytest
python -m pytest "src/tests" --junitxml=report.xml