Commit 1014f0d3 authored by Łukasz Nowak's avatar Łukasz Nowak

Expose directory with data

parent 4a236935
......@@ -99,8 +99,9 @@ def main():
print(try_info + 'Waiting for data in %r.' % (test_result_glob,))
result_list = glob.glob(test_result_glob)
if len(result_list) > 0:
print(try_info + 'Data directory found, looking for results.')
result_path = result_list[0]
print(try_info + 'Data directory %r found, looking for results.' % (
result_path,))
result_file_list = list((os.path.join(dirname, filename)
for dirname, dirnames, filenames in os.walk(result_path)
for filename in filenames
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment