mirror of
https://github.com/wekan/wekan.git
synced 2026-01-21 16:56:11 +01:00
Update base URL retrieval in tests to use BASE_URL environment variable for consistency
This commit is contained in:
parent
9da7005a66
commit
fd3c866c53
2 changed files with 2 additions and 2 deletions
|
|
@ -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):
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue