mirror of
https://github.com/wekan/wekan.git
synced 2026-01-28 04:06:10 +01:00
Refactor API and UI test workflows to improve readability and consistency; update base URL retrieval to use environment variable for flexibility
This commit is contained in:
parent
6b3560c8d3
commit
97fb01f3bc
4 changed files with 19 additions and 7 deletions
|
|
@ -1,6 +1,7 @@
|
|||
import os
|
||||
import requests
|
||||
|
||||
base_url = "http://10.0.0.17"
|
||||
base_url = os.environ.get("WEKAN_URL", "http://localhost")
|
||||
|
||||
class TestLogin:
|
||||
def test_health_check(self):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue