mirror of
https://github.com/nodejs/node.git
synced 2024-11-22 07:37:56 +01:00
cd36f6eeff
PR-URL: https://github.com/nodejs/node/pull/47273 Refs: https://github.com/nodejs/node/issues/47146 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
8 lines
206 B
Python
8 lines
206 B
Python
import os
|
|
import sys
|
|
sys.path.append(os.path.join(os.path.dirname(__file__), '..'))
|
|
import testpy
|
|
|
|
def GetConfiguration(context, root):
|
|
return testpy.ParallelTestConfiguration(context, root, 'doctool')
|