Skip to content

Commit

Permalink
Bug 1816042 - WPT permafail JSONDecodeError. r=perftest-reviewers,Ale…
Browse files Browse the repository at this point in the history
…xandruIonescu,sparky

Differential Revision: https://phabricator.services.mozilla.com/D170101
  • Loading branch information
Andrej1198 committed Mar 6, 2023
1 parent 247b23c commit f8046fa
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
5 changes: 4 additions & 1 deletion python/mozperftest/mozperftest/test/webpagetest.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,10 @@ def run(self, metadata):
self.wpt_browser_metrics = options["browser_metrics"]
self.pre_run_error_checks(options["test_parameters"], test_list)
self.create_and_run_wpt_threaded_tests(test_list, metadata)
self.test_runs_left_this_month()
try:
self.test_runs_left_this_month()
except Exception:
self.warning("testBalance check had an issue, please investigate")
return metadata

def pre_run_error_checks(self, options, test_list):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ module.exports = {
label: "",
runs: 3,
fvonly: 0,
private: 1,
private: 0,
web10: 0,
script: "",
block: "",
Expand Down Expand Up @@ -63,7 +63,6 @@ module.exports = {
"amazon.com",
"yahoo.com",
"zoom.us",
"weibo.com",
"sina.com.cn",
"live.com",
"reddit.com",
Expand Down
3 changes: 1 addition & 2 deletions testing/performance/perftest_WPT_chrome_init_file.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ module.exports = {
label: "",
runs: 3,
fvonly: 0,
private: 1,
private: 0,
web10: 0,
script: "",
block: "",
Expand Down Expand Up @@ -63,7 +63,6 @@ module.exports = {
"amazon.com",
"yahoo.com",
"zoom.us",
"weibo.com",
"sina.com.cn",
"live.com",
"reddit.com",
Expand Down
3 changes: 1 addition & 2 deletions testing/performance/perftest_WPT_firefox_init_file.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ module.exports = {
label: "",
runs: 3,
fvonly: 0,
private: 1,
private: 0,
web10: 0,
script: "",
block: "",
Expand Down Expand Up @@ -63,7 +63,6 @@ module.exports = {
"amazon.com",
"yahoo.com",
"zoom.us",
"weibo.com",
"sina.com.cn",
"live.com",
"reddit.com",
Expand Down

0 comments on commit f8046fa

Please sign in to comment.