test-my-pr: show libraries in log output
This commit is contained in:
parent
7bb2bd3ca0
commit
4401eba3fa
|
@ -129,7 +129,7 @@ if __name__ == "__main__":
|
||||||
print("No files to process")
|
print("No files to process")
|
||||||
continue
|
continue
|
||||||
|
|
||||||
results_to_diff = []
|
results_to_diff = list()
|
||||||
|
|
||||||
main_crashed = False
|
main_crashed = False
|
||||||
your_crashed = False
|
your_crashed = False
|
||||||
|
@ -188,6 +188,7 @@ if __name__ == "__main__":
|
||||||
myfile.write(package + '\n')
|
myfile.write(package + '\n')
|
||||||
diff = lib.diff_results('main', results_to_diff[0], 'your', results_to_diff[1])
|
diff = lib.diff_results('main', results_to_diff[0], 'your', results_to_diff[1])
|
||||||
if diff != '':
|
if diff != '':
|
||||||
|
myfile.write(f'libraries:{libraries}\n')
|
||||||
myfile.write('diff:\n' + diff + '\n')
|
myfile.write('diff:\n' + diff + '\n')
|
||||||
|
|
||||||
with open(timing_file, 'a') as myfile:
|
with open(timing_file, 'a') as myfile:
|
||||||
|
|
Loading…
Reference in New Issue