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 3f2c6e2 commit adc3186Copy full SHA for adc3186
test/test_integration.py
@@ -82,6 +82,12 @@ def run_wdl_md5sum(wdl_input):
82
("workflow_url", wdl_input)]
83
response = requests.post(endpoint, files=parts).json()
84
output_dir = os.path.abspath(os.path.join('workflows', response['workflow_id'], 'outdir'))
85
+ check_travis_log = os.path.join(output_dir, 'stderr')
86
+ with open(check_travis_log, 'r') as f:
87
+ print(f.read())
88
+ print(subprocess.check_output(['ls', os.path.join('workflows', response['workflow_id'])]))
89
+ print('\n')
90
+ print(subprocess.check_output(['ls', output_dir]))
91
return os.path.join(output_dir, 'md5sum.txt'), response['workflow_id']
92
93
0 commit comments