314 self.__originalPathString, project=self.project, parent=self |
314 self.__originalPathString, project=self.project, parent=self |
315 ) |
315 ) |
316 |
316 |
317 # Create the background service object |
317 # Create the background service object |
318 logging.getLogger(__name__).debug("Creating Background Service...") |
318 logging.getLogger(__name__).debug("Creating Background Service...") |
319 self.backgroundService = BackgroundService(self) |
319 self.backgroundService = BackgroundService( |
|
320 releaseMode=UserInterface.ReleaseMode, parent=self |
|
321 ) |
320 |
322 |
321 splash.showMessage(self.tr("Initializing Plugin Manager...")) |
323 splash.showMessage(self.tr("Initializing Plugin Manager...")) |
322 logging.getLogger(__name__).debug("Initializing Plugin Manager...") |
324 logging.getLogger(__name__).debug("Initializing Plugin Manager...") |
323 |
325 |
324 # Initialize the Plugin Manager (Plugins are initialized later) |
326 # Initialize the Plugin Manager (Plugins are initialized later) |
5948 Private slot to generate the testing dialog on demand. |
5950 Private slot to generate the testing dialog on demand. |
5949 """ |
5951 """ |
5950 from eric7.Testing.TestingWidget import TestingWidget |
5952 from eric7.Testing.TestingWidget import TestingWidget |
5951 |
5953 |
5952 if self.__testingWidget is None: |
5954 if self.__testingWidget is None: |
5953 self.__testingWidget = TestingWidget() |
5955 self.__testingWidget = TestingWidget(releaseMode=UserInterface.ReleaseMode) |
5954 self.__testingWidget.testFile.connect(self.viewmanager.setFileLine) |
5956 self.__testingWidget.testFile.connect(self.viewmanager.setFileLine) |
5955 self.__testingWidget.testRunStopped.connect(self.__testingStopped) |
5957 self.__testingWidget.testRunStopped.connect(self.__testingStopped) |
5956 |
5958 |
5957 def __testingStopped(self): |
5959 def __testingStopped(self): |
5958 """ |
5960 """ |