From 45f26c92eb57fcb97cec92cb2c114948bb6698ca Mon Sep 17 00:00:00 2001 From: omri zaher Date: Mon, 11 Aug 2025 12:28:22 +0300 Subject: [PATCH] Fix WEKAN_URL environment variable retrieval in UI tests for consistency --- .github/workflows/ui-testing.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ui-testing.yml b/.github/workflows/ui-testing.yml index b37250759..8d27407a4 100644 --- a/.github/workflows/ui-testing.yml +++ b/.github/workflows/ui-testing.yml @@ -36,6 +36,6 @@ jobs: - name: Run Selenium tests env: HEADLESS: true - WEKAN_URL: http://${{ secrets.WEKAN_URL }}:80 + WEKAN_URL: ${{ secrets.WEKAN_URL }} run: | pytest tests/ -v -s