Update status page generation to show CR results

This commit is contained in:
Sébastien Deleuze
2023-07-06 09:50:51 +02:00
parent ca0f6d5d14
commit bf03f85fdb

View File

@@ -78,6 +78,7 @@ public abstract class UpdateStatusPage extends AbstractSmokeTestsTask {
private enum TestType {
APP_TEST(SmokeTest::appTests, "-app-test", "appTest"),
CR_APP_TEST(SmokeTest::appTests, "-cr-app-test", "crAppTest"),
TEST(SmokeTest::tests, "-test", "test");
private final Predicate<SmokeTest> predicate;