Skip uploading I/O Graphs if the test is disabled

This commit is contained in:
2Shirt 2019-03-13 20:52:01 -06:00
parent b268385e0b
commit 62e78cdc2c
Signed by: 2Shirt
GPG key ID: 152FAC923B0E132C

View file

@ -192,7 +192,7 @@ class osTicket():
# Test reports
for name, test in dev.tests.items():
report.extend(self.convert_report(name, test))
if name == 'I/O Benchmark':
if name == 'I/O Benchmark' and not test.disabled:
# Create PNG graph
try:
graph_file = export_io_graph(dev)