File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 9
9
from time import sleep
10
10
11
11
import requests
12
+ import logging
12
13
from bs4 import BeautifulSoup
13
14
14
15
GECKO_API_URL = "https://api.github.com/repos/mozilla/geckodriver/releases/latest"
@@ -188,6 +189,8 @@ def get_gd_platform():
188
189
response = requests .get (fx_download_dir_url )
189
190
status = response .status_code
190
191
192
+ logging .warning (f"Collecting executable at { fx_download_dir_url } " )
193
+
191
194
if response_text is None :
192
195
exit (f"Could not find build at { fx_download_dir_url } ." )
193
196
Original file line number Diff line number Diff line change @@ -163,7 +163,7 @@ def reportable(platform_to_test=None):
163
163
num_suites += 1
164
164
165
165
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.)"
167
167
)
168
168
return covered_suites < num_suites
169
169
You can’t perform that action at this time.
0 commit comments