Skip to content

Commit adc3186

Browse files
committed
More debugging on travis.
1 parent 3f2c6e2 commit adc3186

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

test/test_integration.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,12 @@ def run_wdl_md5sum(wdl_input):
8282
("workflow_url", wdl_input)]
8383
response = requests.post(endpoint, files=parts).json()
8484
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]))
8591
return os.path.join(output_dir, 'md5sum.txt'), response['workflow_id']
8692

8793

0 commit comments

Comments
 (0)