Skip to content

Commit 04c0979

Browse files
committed
Better handling of configuration changes (again).
1 parent 9ade2c1 commit 04c0979

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

PyFunceble/cli/processes/workers/tester.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,8 @@ class TesterWorker(WorkerBase):
8686
initiated_testing_objects: dict = {}
8787

8888
def perform_external_poweron_checks(self) -> None:
89+
result = super().perform_external_poweron_checks()
90+
8991
self.continue_dataset = (
9092
PyFunceble.cli.utils.testing.get_continue_databaset_object(
9193
db_session=self.db_session
@@ -121,7 +123,7 @@ def perform_external_poweron_checks(self) -> None:
121123
},
122124
}
123125

124-
return super().perform_external_poweron_checks()
126+
return result
125127

126128
@staticmethod
127129
def should_be_ignored(subject: str) -> bool:

0 commit comments

Comments
 (0)