pgadmin4/web/regression/test_setup.py

22 lines
640 B
Python
Raw Normal View History

2017-03-16 14:27:55 +00:00
##########################################################################
#
# pgAdmin 4 - PostgreSQL Tools
#
2018-01-05 10:42:49 +00:00
# Copyright (C) 2013 - 2018, The pgAdmin Development Team
# This software is released under the PostgreSQL Licence
#
2017-03-16 14:27:55 +00:00
##########################################################################
import json
import os
CURRENT_PATH = os.path.dirname(os.path.realpath(__file__))
try:
with open(CURRENT_PATH + '/test_config.json') as data_file:
config_data = json.load(data_file)
except Exception as exception:
with open(CURRENT_PATH + '/test_config.json.in') as data_file:
config_data = json.load(data_file)