From 35ece19ba5b8aa75cbfbbd19ab4cfb3e7a8c52af Mon Sep 17 00:00:00 2001 From: Casey McGinley Date: Tue, 8 Oct 2024 15:08:27 -0700 Subject: [PATCH] writing out setup complete to terminal --- .../infrastructures/DetectionTestingInfrastructure.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/contentctl/actions/detection_testing/infrastructures/DetectionTestingInfrastructure.py b/contentctl/actions/detection_testing/infrastructures/DetectionTestingInfrastructure.py index 497cf9fb..ab30dd50 100644 --- a/contentctl/actions/detection_testing/infrastructures/DetectionTestingInfrastructure.py +++ b/contentctl/actions/detection_testing/infrastructures/DetectionTestingInfrastructure.py @@ -170,7 +170,14 @@ def setup(self): raise ExceptionGroup(msg, e.exceptions) from e # type: ignore raise Exception(msg) from e - self.format_pbar_string(TestReportingType.SETUP, self.get_name(), "Finished Setup!") + self.pbar.write( + self.format_pbar_string( + TestReportingType.SETUP, + self.get_name(), + "Finished Setup!", + set_pbar=False + ) + ) def wait_for_ui_ready(self): self.get_conn()