Skip to content

Commit

Permalink
test: fix flaky wpt/test-timers
Browse files Browse the repository at this point in the history
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: nodejs#37672
  • Loading branch information
Trott committed Mar 10, 2021
1 parent 38f3238 commit 587e905
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/wpt/testcfg.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
import testpy

def GetConfiguration(context, root):
return testpy.ParallelTestConfiguration(context, root, 'wpt')
return testpy.SimpleTestConfiguration(context, root, 'wpt')

0 comments on commit 587e905

Please sign in to comment.