mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
978594c706
For some reason, the test/addons directory has a status file of addon.status rather than addons.status. Make it consistent with other directories. PR-URL: https://github.com/nodejs/node/pull/37532 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: James M Snell <jasnell@gmail.com>
7 lines
194 B
Python
7 lines
194 B
Python
import sys, os
|
|
sys.path.append(os.path.join(os.path.dirname(__file__), '..'))
|
|
import testpy
|
|
|
|
def GetConfiguration(context, root):
|
|
return testpy.AddonTestConfiguration(context, root, 'addons')
|