We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a0e556 commit 2717c60Copy full SHA for 2717c60
cwltool/cwltest.py
@@ -87,6 +87,8 @@ def run_test(args, i, t): # type: (argparse.Namespace, Any, Dict[str,str]) -> i
87
88
outstr = subprocess.check_output(test_command)
89
out = yaml.load(outstr)
90
+ if not isinstance(out, dict):
91
+ raise ValueError("Non-dict value parsed from output string.")
92
except ValueError as v:
93
_logger.error(str(v))
94
_logger.error(outstr)
0 commit comments