From 587e9050cba82884c585b7ab56de706989c159e9 Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Wed, 10 Mar 2021 06:21:13 -0800 Subject: [PATCH] test: fix flaky wpt/test-timers Change the wpt tests to not run in parallel in our Python test runner. On my local machine, this changes the time needed to run the suite from about 2 seconds to about 5 seconds, but it makes the test suite much more reliable. Fixes: https://github.com/nodejs/node/issues/37672 --- test/wpt/testcfg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/wpt/testcfg.py b/test/wpt/testcfg.py index db235699ddfe57..3c356cf474d83c 100644 --- a/test/wpt/testcfg.py +++ b/test/wpt/testcfg.py @@ -3,4 +3,4 @@ import testpy def GetConfiguration(context, root): - return testpy.ParallelTestConfiguration(context, root, 'wpt') + return testpy.SimpleTestConfiguration(context, root, 'wpt')