Skip uploading I/O Graphs if the test is disabled
This commit is contained in:
parent
b268385e0b
commit
62e78cdc2c
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue