From 02bdc94f33c51dde0a13ce2df22cc7379a0d7a4f Mon Sep 17 00:00:00 2001 From: leehk Date: Thu, 17 Apr 2025 11:02:33 +0800 Subject: [PATCH] update --- .github/workflows/template_test.yml | 4 ++-- app/backend/Dockerfile | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/template_test.yml b/.github/workflows/template_test.yml index 7011260..dd23217 100644 --- a/.github/workflows/template_test.yml +++ b/.github/workflows/template_test.yml @@ -146,8 +146,8 @@ jobs: - name: Run Tests shell: bash run: | - TEST_DIRS="${{ inputs.tests }}" - TEST_ENVS_JSON="${{ inputs.testEnvs }}" + TEST_DIRS='["tests/integration/backend"]' + TEST_ENVS_JSON='["FRONTEND_URL=http://frontend:80","BACKEND_URL=http://backend:80","ENVIRONMENT=dev","TESTING=1"]' RESULTS_PATH="${{ inputs.testResultsPath }}" STAGING_DIR="${{ runner.temp }}/test-results" # Use runner temp dir for results mkdir -p "$STAGING_DIR" diff --git a/app/backend/Dockerfile b/app/backend/Dockerfile index 061acf8..71da6e4 100644 --- a/app/backend/Dockerfile +++ b/app/backend/Dockerfile @@ -44,7 +44,6 @@ RUN pipenv install --deploy --dev RUN pipenv run pytest tests --disable-warnings - # BUILD FROM base AS builder