blob: 1981fce3078574c1b8fa64e9e814e891fcda6e10 [file] [log] [blame]
import yaml
def get_config(file):
"""
Parse test config file
:param file:
:return:
"""
with open(file, 'r') as stream:
try:
return yaml.load(stream)
except yaml.YAMLError as exc:
print(exc)