Update base URL retrieval in tests to use BASE_URL environment variable for consistency

This commit is contained in:
omri zaher 2025-08-11 11:56:39 +03:00
parent 9da7005a66
commit fd3c866c53
2 changed files with 2 additions and 2 deletions

View file

@ -1,7 +1,7 @@
import os
import requests
base_url = os.environ.get("WEKAN_URL", "http://localhost")
base_url = os.environ.get("BASE_URL", "http://localhost")
class TestLogin:
def test_health_check(self):

View file

@ -2,7 +2,7 @@ import pytest
import requests
import os
base_url = os.environ.get("WEKAN_URL", "http://localhost")
base_url = os.environ.get("BASE_URL", "http://localhost")
class TestBoard:
@pytest.fixture(scope="class", autouse=True)