From 130420b9e11d4ca0fd1dfc0c6542dfcf7afc195d Mon Sep 17 00:00:00 2001 From: Joyee Cheung Date: Mon, 27 Mar 2023 22:32:04 +0200 Subject: [PATCH] test: run doctool tests in parallel MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/47273 Refs: https://github.com/nodejs/node/issues/47146 Reviewed-By: Rich Trott Reviewed-By: Yagiz Nizipli Reviewed-By: Colin Ihrig Reviewed-By: Michaƫl Zasso Reviewed-By: James M Snell --- test/doctool/testcfg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/doctool/testcfg.py b/test/doctool/testcfg.py index 5778d2f0c5ba5a..33a274a43d6451 100644 --- a/test/doctool/testcfg.py +++ b/test/doctool/testcfg.py @@ -4,4 +4,4 @@ import testpy def GetConfiguration(context, root): - return testpy.SimpleTestConfiguration(context, root, 'doctool') + return testpy.ParallelTestConfiguration(context, root, 'doctool')