From ea004ec66432dac620b6c4c48dbdd7e04dcf92c4 Mon Sep 17 00:00:00 2001 From: Anish Sarkar <104695310+AnishSarkar22@users.noreply.github.com> Date: Sun, 8 Mar 2026 02:45:04 +0530 Subject: [PATCH] chore: add SECRET_KEY environment variable for CI testing in backend workflow --- .github/workflows/backend-tests.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/backend-tests.yml b/.github/workflows/backend-tests.yml index 46ecbd14e..d7f3f2bdc 100644 --- a/.github/workflows/backend-tests.yml +++ b/.github/workflows/backend-tests.yml @@ -139,6 +139,7 @@ jobs: working-directory: surfsense_backend env: TEST_DATABASE_URL: postgresql+asyncpg://postgres:postgres@localhost:5432/surfsense_test + SECRET_KEY: ci-test-secret-key-not-for-production run: uv run pytest -m integration test-gate: