diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-15 03:34:42 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-15 03:34:42 +0000 |
commit | da4c7e7ed675c3bf405668739c3012d140856109 (patch) | |
tree | cdd868dba063fecba609a1d819de271f0d51b23e /testing/raptor/test | |
parent | Adding upstream version 125.0.3. (diff) | |
download | firefox-da4c7e7ed675c3bf405668739c3012d140856109.tar.xz firefox-da4c7e7ed675c3bf405668739c3012d140856109.zip |
Adding upstream version 126.0.upstream/126.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/raptor/test')
-rw-r--r-- | testing/raptor/test/test_manifest.py | 28 |
1 files changed, 1 insertions, 27 deletions
diff --git a/testing/raptor/test/test_manifest.py b/testing/raptor/test/test_manifest.py index 3b066953e1..ed2ff3a563 100644 --- a/testing/raptor/test/test_manifest.py +++ b/testing/raptor/test/test_manifest.py @@ -76,18 +76,6 @@ VALID_MANIFESTS = [ "type": "benchmark", "unit": "score", }, - { - # benchmark test for chromium - "alert_threshold": 2.0, - "apps": "chromium", - "lower_is_better": False, - "manifest": "valid_details_1", - "measure": "fcp", - "page_cycles": 5, - "test_url": "http://www.test-url/goes/here", - "type": "benchmark", - "unit": "score", - }, ] INVALID_MANIFESTS = [ @@ -116,18 +104,6 @@ INVALID_MANIFESTS = [ "unit": "ms", }, { - "alert_threshold": 2.0, - "apps": "chromium", - "lower_is_better": True, - "manifest": "invalid_details_1", - "measure": "fnbpaint, fcp", - "page_cycles": 25, - "playback": "mitmproxy", - "test_url": "http://www.test-url/goes/here", - "type": "pageload", - "unit": "ms", - }, - { "alert_on": "nope", "alert_threshold": 2.0, "apps": "firefox", @@ -144,9 +120,7 @@ INVALID_MANIFESTS = [ ] -@pytest.mark.parametrize( - "app", ["firefox", "chrome", "chromium", "geckoview", "refbrow", "fenix"] -) +@pytest.mark.parametrize("app", ["firefox", "chrome", "geckoview", "refbrow", "fenix"]) def test_get_browser_test_list(app): test_list = get_browser_test_list(app, run_local=True) assert len(test_list) > 0 |