From b7c3b321ec1bde1b53c76b86d9801c9422ed02be Mon Sep 17 00:00:00 2001 From: Ian Stevenson Date: Thu, 18 Jan 2024 10:41:52 +1100 Subject: [PATCH] Revert "test(GitHub CI): disable TestNG HTML logs" This reverts commit f2325c65434011ad5ad8a34a1f16fa7eff7e5f44. It didn't seem to make any difference - other than different (unhelpful) runtime output. Seeing the change removes all listeners, maybe I needed to add a basic listener back in. --- autotest/OldTests/build.sbt | 2 -- 1 file changed, 2 deletions(-) diff --git a/autotest/OldTests/build.sbt b/autotest/OldTests/build.sbt index b022947d36..95bfcb60cb 100644 --- a/autotest/OldTests/build.sbt +++ b/autotest/OldTests/build.sbt @@ -24,8 +24,6 @@ enablePlugins(TestNGPlugin) testNGOutputDirectory := (target.value / "testng").absolutePath testNGParameters ++= Seq("-log", autotestBuildConfig.value.getInt("tests.verbose").toString) -// Disable generating the HTML report, as it's running out of memory on GitHub Actions. -testNGParameters ++= Seq("-usedefaultlisteners", "false") testNGSuites := { val tc = autotestBuildConfig.value.getConfig("tests")