We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a7e8072 commit 9e02172Copy full SHA for 9e02172
scripts/tests/py/metadata.py
@@ -80,17 +80,9 @@ def __resolve_env_vals__(self, metadata_dict):
80
if run_arg_val is None:
81
run_arg_val = True
82
83
- if not self.__is_run_arg_valid__(run_arg_val):
84
- raise Exception(str(run_arg_val)+" is not a valid value for "+str(run_arg))
85
-
86
metadata_dict[run_arg] = run_arg_val
87
88
89
- # determines if the defined run arguments are valid
90
- def __is_run_arg_valid__(self, run_arg_val):
91
- return True
92
93
94
# reads the test script file and parses out the run arguments defined in the file
95
def __parse_script__(self, py_script_path, runs_metadata):
96
runs_def_ptrn=re.compile(r'^\s*#\s*test-runner-runs:\s*(.*)$')
0 commit comments