From 0dd1eb6d595a1c4e2b65a6c4a7d62b6ba9a13051 Mon Sep 17 00:00:00 2001 From: Mondo Diaz Date: Tue, 27 Jan 2026 19:04:40 +0000 Subject: [PATCH] Add debug output for integration test environment variables Print ORCHARD_TEST_URL and ORCHARD_TEST_PASSWORD to diagnose why tests are failing with 401 - the password variable may not be reaching the pytest execution. --- .gitlab-ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4741410..1534a5b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -118,6 +118,9 @@ release: - pip install --index-url "$PIP_INDEX_URL" pytest pytest-asyncio httpx script: - cd backend + # Debug: Print environment variables for test configuration + - echo "ORCHARD_TEST_URL=$ORCHARD_TEST_URL" + - echo "ORCHARD_TEST_PASSWORD is set to '${ORCHARD_TEST_PASSWORD:-NOT SET}'" # Run full integration test suite, excluding: # - large/slow tests # - requires_direct_s3 tests (can't access MinIO from outside K8s cluster)