Modify testrail to use global variable for TR URL

This commit is contained in:
bealler
2020-12-16 14:30:33 -05:00
parent 9d24520d21
commit 38750e11e9

View File

@@ -112,7 +112,7 @@ class APIClient:
"Get the project ID using project name"
project_id = None
projects = client.send_get('get_projects')
pprint(projects)
##pprint(projects)
for project in projects:
if project['name']== project_name:
project_id = project['id']