mirror of
https://github.com/nodejs/node.git
synced 2025-04-30 15:41:06 +00:00

This commit updates the sqlite compiled tests to be structured like other compiled tests. Refs: https://github.com/nodejs/node/issues/56347 PR-URL: https://github.com/nodejs/node/pull/56446 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Stewart X Addison <sxa@redhat.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.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, 'sqlite')
|