mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-01-09 23:54:09 -06:00
7 lines
183 B
Python
7 lines
183 B
Python
import os
|
|
import json
|
|
|
|
CURRENT_PATH = os.path.dirname(os.path.realpath(__file__))
|
|
with open(CURRENT_PATH + "/psql_test_data.json") as data_file:
|
|
test_cases = json.load(data_file)
|