Skip to content

Commit fe5f411

Browse files
committed
more logging
1 parent b76929a commit fe5f411

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

collect_executables.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
from time import sleep
1010

1111
import requests
12+
import logging
1213
from bs4 import BeautifulSoup
1314

1415
GECKO_API_URL = "https://api.github.com/repos/mozilla/geckodriver/releases/latest"
@@ -188,6 +189,8 @@ def get_gd_platform():
188189
response = requests.get(fx_download_dir_url)
189190
status = response.status_code
190191

192+
logging.warning(f"Collecting executable at {fx_download_dir_url}")
193+
191194
if response_text is None:
192195
exit(f"Could not find build at {fx_download_dir_url}.")
193196

modules/testrail_integration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ def reportable(platform_to_test=None):
163163
num_suites += 1
164164

165165
logging.warning(
166-
f"Potentially matching run found, may be reportable. ({covered_suites} out of {num_suites} suites already reported.)"
166+
f"Potentially matching run found for {platform}, may be reportable. ({covered_suites} out of {num_suites} suites already reported.)"
167167
)
168168
return covered_suites < num_suites
169169

0 commit comments

Comments
 (0)