From d005d9e74fe4ca0958e80a279c174040d811d186 Mon Sep 17 00:00:00 2001 From: ahmedk <karim.ahmed@xfel.eu> Date: Wed, 3 Jan 2024 11:26:36 +0100 Subject: [PATCH] apply test only for correct calibrations --- .../test_reference_runs/test_pre_deployment.py | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/tests/test_reference_runs/test_pre_deployment.py b/tests/test_reference_runs/test_pre_deployment.py index 152f0a4b4..1cf3fdfc1 100644 --- a/tests/test_reference_runs/test_pre_deployment.py +++ b/tests/test_reference_runs/test_pre_deployment.py @@ -375,14 +375,15 @@ def test_xfel_calibrate( if time_counter > time_to_wait: assert False, f"{test_key} failure, report doesn't exists." LOGGER.info("Report found.") - # For corrections validate same calibration constants were retrieved. - - metadata_file = f"calibration_metadata_{cal_conf['karabo-id']}" - assert compare_metadata_ccvs( - out_folder / metadata_file, - reference_folder / metadata_file, - "retrieved-constants", - ), "Found difference in the metadata for the retrieved Constants." + + if cal_type.lower() != "correct": + # For corrections validate calibration constants + metadata_file = f"calibration_metadata_{cal_conf['karabo-id']}" + assert compare_metadata_ccvs( + out_folder / metadata_file, + reference_folder / metadata_file, + "retrieved-constants", + ), "Found difference in the metadata for the retrieved Constants." # Stop tests at this point, if desired. if not skip_numerical_validation: -- GitLab