File tree Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -852,7 +852,7 @@ def save_results(
852
852
)
853
853
854
854
algorithms_known : dict [str , Algorithm ] = {algo .key : algo for algo in pipeline .algorithms .all ()}
855
- job_logger .info (f"Algorithms registered for pipeline: \n { '' .join (algorithms_known .keys ())} " )
855
+ job_logger .info (f"Algorithms registered for pipeline: \n { ', ' .join (algorithms_known .keys ())} " )
856
856
857
857
if results .algorithms :
858
858
logger .warning (
Original file line number Diff line number Diff line change @@ -553,8 +553,6 @@ def test_unknown_algorithm_returned_by_processing_service(self):
553
553
self .assertEqual (new_algorithm_count , current_total_algorithm_count )
554
554
555
555
# Ensure new algorithms were also added to the pipeline
556
- # self.assertTrue(self.pipeline.algorithms.filter(name=new_detector.name, key=new_detector.key).exists())
557
- # self.assertTrue(self.pipeline.algorithms.filter(name=new_classifier.name, key=new_classifier.key).exists())
558
556
559
557
def test_yes_reprocess_if_new_terminal_algorithm_same_intermediate (self ):
560
558
"""
You can’t perform that action at this time.
0 commit comments