mirror of
https://github.com/status-im/status-desktop.git
synced 2025-02-19 10:09:38 +00:00
7 lines
210 B
Python
7 lines
210 B
Python
|
import os
|
||
|
|
||
|
TESTRAIL_RUN_ID = os.getenv('TESTRAIL_URL', '').strip()
|
||
|
TESTRAIL_URL = os.getenv('TESTRAIL_URL', None)
|
||
|
TESTRAIL_USER = os.getenv('TESTRAIL_USER', None)
|
||
|
TESTRAIL_PWD = os.getenv('TESTRAIL_PWD', None)
|