mirror of
https://github.com/status-im/desktop-qa-automation.git
synced 2025-02-23 01:28:16 +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)
|