From 96257a1cae6b9d6ac18cef7f1c6046912ff69ea3 Mon Sep 17 00:00:00 2001 From: = Date: Mon, 25 Jul 2022 20:27:38 -0700 Subject: [PATCH] minor changes, need to fix readiness bug from issue #3 --- descqa/srv_readiness_test.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/descqa/srv_readiness_test.py b/descqa/srv_readiness_test.py index 20deb515..62c6feb9 100644 --- a/descqa/srv_readiness_test.py +++ b/descqa/srv_readiness_test.py @@ -295,9 +295,9 @@ def run_on_single_catalog(self, catalog_instance, catalog_name, output_dir): quantity_tot =[] label_tot=[] plots_tot=[] + checks_tot = [] for i, checks in enumerate(self.quantities_to_check): # total list of quantities - quantity_patterns = checks['quantities'] if isinstance(checks['quantities'], (tuple, list)) else [checks['quantities']] quantities_this = set() @@ -320,6 +320,7 @@ def run_on_single_catalog(self, catalog_instance, catalog_name, output_dir): plot_filename = 'p{:02d}_{}.png'.format(i, quantity_group_label) label_tot.append(quantity_group_label) plots_tot.append(plot_filename) + checks_tot.append(checks) quantities_this_new=[]