add .skip.html to skip files in legacy tests

This commit is contained in:
Muki Kiboigo
2025-12-24 09:03:22 -08:00
parent 872ec33662
commit 248ce4f1a8
7 changed files with 14 additions and 19 deletions

View File

@@ -62,6 +62,10 @@ pub fn main() !void {
continue;
}
if (std.mem.endsWith(u8, entry.basename, ".skip.html")) {
continue;
}
// These are crashing, comment this out to skip them.
// if (std.mem.indexOf(u8, entry.basename, "navigation") != null) {