blob: e35d5ed10e65de0d46a3f8a159cd7c8714ba5a41 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
import yaml
with open('./testcases.yaml') as f:
testcases_yaml = yaml.safe_load(f)
f.close()
def get_format(project, case):
testcases = testcases_yaml.get(project)
if isinstance(testcases, list):
for case_dict in testcases:
if case_dict['name'] == case:
return 'format_' + case_dict['format'].strip()
return None
if __name__ == '__main__':
fmt = get_format('functest', 'vping_ssh')
print fmt
|