From 62e78cdc2c6766142d6dcd30dc61fd7e467d7c71 Mon Sep 17 00:00:00 2001 From: 2Shirt <2xShirt@gmail.com> Date: Wed, 13 Mar 2019 20:52:01 -0600 Subject: [PATCH] Skip uploading I/O Graphs if the test is disabled --- .bin/Scripts/functions/osticket.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.bin/Scripts/functions/osticket.py b/.bin/Scripts/functions/osticket.py index b9b327f0..8e011c55 100644 --- a/.bin/Scripts/functions/osticket.py +++ b/.bin/Scripts/functions/osticket.py @@ -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)