From c4f53a44f08a3020e2ad13bee579532d0be77747 Mon Sep 17 00:00:00 2001 From: RichardObi Date: Tue, 28 Nov 2023 17:36:51 +0100 Subject: [PATCH] Adjustment of test for better debugging. --- tests/test_model_executor.py | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/tests/test_model_executor.py b/tests/test_model_executor.py index 8b4c2b3..0873fcd 100644 --- a/tests/test_model_executor.py +++ b/tests/test_model_executor.py @@ -16,9 +16,18 @@ # Set the logging level depending on the level of detail you would like to have in the logs while running the tests. -LOGGING_LEVEL = logging.INFO # WARNING # logging.INFO +LOGGING_LEVEL = logging.DEBUG # WARNING # logging.INFO models_with_args = [ + ( + "00023_PIX2PIXHD_BREAST_DCEMRI", + { + "input_path": "input", + "gpu_id": 0, + "image_size": 448, + }, + 3, + ), ( "00001_DCGAN_MMG_CALC_ROI", {}, @@ -88,15 +97,6 @@ 3, ), ("00022_WGAN_CARDIAC_AGING", {}, 3), - ( - "00023_PIX2PIXHD_BREAST_DCEMRI", - { - "input_path": "input/", - "gpu_id": 0, - "image_size": 448, - }, - 3, - ), ]