Skip to content

Commit 7b1f63a

Browse files
committed
Remove include_webtransport_h3 from TestLoader
This is never used by TestLoader for filtering tests. Unlike include_https and include_h2 which have manifest metadata, we have no such flag to filter tests using WebTransport, and it seems unlikely we're going to add such a flag.
1 parent 62c64e1 commit 7b1f63a

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

tools/wptrunner/wptrunner/testloader.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,6 @@ def __init__(self,
364364
chunk_number=1,
365365
include_https=True,
366366
include_h2=True,
367-
include_webtransport_h3=False,
368367
skip_timeout=False,
369368
skip_crash=False,
370369
skip_implementation_status=None,
@@ -382,7 +381,6 @@ def __init__(self,
382381
self.disabled_tests = None
383382
self.include_https = include_https
384383
self.include_h2 = include_h2
385-
self.include_webtransport_h3 = include_webtransport_h3
386384
self.skip_timeout = skip_timeout
387385
self.skip_crash = skip_crash
388386
self.skip_implementation_status = skip_implementation_status

tools/wptrunner/wptrunner/wptrunner.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,6 @@ def get_loader(test_paths: wptcommandline.TestPaths,
121121
chunk_number=kwargs["this_chunk"],
122122
include_https=ssl_enabled,
123123
include_h2=h2_enabled,
124-
include_webtransport_h3=kwargs["enable_webtransport_h3"],
125124
skip_timeout=kwargs["skip_timeout"],
126125
skip_crash=kwargs["skip_crash"],
127126
skip_implementation_status=kwargs["skip_implementation_status"],

0 commit comments

Comments
 (0)