blob: 1981fce3078574c1b8fa64e9e814e891fcda6e10 [file] [log] [blame]
mirabal126e7872017-07-06 05:54:49 -05001import yaml
2
3
4def get_config(file):
5 """
6 Parse test config file
7 :param file:
8 :return:
9 """
10 with open(file, 'r') as stream:
11 try:
12 return yaml.load(stream)
13 except yaml.YAMLError as exc:
14 print(exc)
15