You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
But when I run the run_tests_miniwdl.py script with:
python run_tests_miniwdl.py -T tests
I get a CalledProcessError. It looks like this line changes the running directory for miniwdl, but the WDL paths specified in test_config.json do not reflect this change. For example:
..."id": "hello",
"path": "tests/hello.wdl",
...
Thus, the value passed into the cwd is tests/data, which eventually leads to the script being unable to find the file:
[Errno 2] No such file or directory: 'tests/hello.wdl'
I'm having trouble running the
run_tests_miniwdl.py
script after extracting the test files out of the spec withextract_tests.py
.I'm running this command to extract the tests:
But when I run the
run_tests_miniwdl.py
script with:I get a
CalledProcessError
. It looks like this line changes the running directory for miniwdl, but the WDL paths specified intest_config.json
do not reflect this change. For example:Thus, the value passed into the cwd is
tests/data
, which eventually leads to the script being unable to find the file:I think this issue will occur whenever a data directory is specified and when an output directory is given.
The text was updated successfully, but these errors were encountered: