chore: Update CI workflow to include numpy and pillow dependencies for faster builds
Some checks failed
CI / skip-ci-check (pull_request) Successful in 1m29s
CI / lint-and-type-check (pull_request) Successful in 2m6s
CI / python-lint (pull_request) Successful in 1m55s
CI / test-backend (pull_request) Successful in 3m10s
CI / build (pull_request) Failing after 1m48s
CI / secret-scanning (pull_request) Successful in 1m36s
CI / dependency-scan (pull_request) Successful in 1m35s
CI / sast-scan (pull_request) Successful in 2m51s
CI / workflow-summary (pull_request) Successful in 1m27s

This commit is contained in:
Tanya 2026-01-08 14:57:01 -05:00
parent c6f27556ac
commit 634d5dab02

View File

@ -426,7 +426,9 @@ jobs:
python3 -m venv /tmp/backend-venv
# Use venv's pip and python directly (avoids shell activation issues)
/tmp/backend-venv/bin/pip install --no-cache-dir fastapi uvicorn pydantic sqlalchemy psycopg2-binary redis rq python-jose python-multipart python-dotenv bcrypt
# Install core dependencies including numpy and pillow (needed for module-level imports)
# Skip heavy ML dependencies (tensorflow, deepface, opencv) for faster builds
/tmp/backend-venv/bin/pip install --no-cache-dir fastapi uvicorn pydantic sqlalchemy psycopg2-binary redis rq python-jose python-multipart python-dotenv bcrypt numpy pillow
# Set environment variables for validation
export PYTHONPATH=$(pwd)