mirror of
https://github.com/status-im/status-desktop.git
synced 2025-02-10 05:36:23 +00:00
7 lines
211 B
Python
7 lines
211 B
Python
import os
|
|
|
|
TESTRAIL_RUN_ID = os.getenv('TESTRAIL_RUN_ID', '').strip()
|
|
TESTRAIL_URL = os.getenv('TESTRAIL_URL', None)
|
|
TESTRAIL_USR = os.getenv('TESTRAIL_USR', None)
|
|
TESTRAIL_PSW = os.getenv('TESTRAIL_PSW', None)
|