test-web: Don't include skipped tests in --dry-run output
This commit is contained in:
parent
8dc8835b64
commit
a9261b9daf
1 changed files with 2 additions and 0 deletions
|
|
@ -1079,6 +1079,8 @@ static ErrorOr<int> run_tests(Core::AnonymousBuffer const& theme, Web::DevicePix
|
|||
shuffle(tests);
|
||||
|
||||
if (app.test_dry_run) {
|
||||
tests.remove_all_matching([](auto const& test) { return s_skipped_tests.contains_slow(test.input_path); });
|
||||
|
||||
outln("Found {} tests...", tests.size());
|
||||
|
||||
for (auto const& [i, test] : enumerate(tests))
|
||||
|
|
|
|||
Loading…
Reference in a new issue