From 760e13c58d756328d84a10884c1768101c7f7ef2 Mon Sep 17 00:00:00 2001 From: Filip Skokan Date: Sun, 2 Apr 2023 23:02:16 +0200 Subject: [PATCH] tools: ensure failed daily wpt run still generates a report MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/47376 Reviewed-By: Michaƫl Zasso Reviewed-By: Yagiz Nizipli --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2ff9636105bfe0..1fa35574ed84d4 100644 --- a/Makefile +++ b/Makefile @@ -602,7 +602,7 @@ test-wpt: all test-wpt-report: $(RM) -r out/wpt mkdir -p out/wpt - WPT_REPORT=1 $(PYTHON) tools/test.py --shell $(NODE) $(PARALLEL_ARGS) wpt + -WPT_REPORT=1 $(PYTHON) tools/test.py --shell $(NODE) $(PARALLEL_ARGS) wpt $(NODE) "$$PWD/tools/merge-wpt-reports.mjs" .PHONY: test-simple