chore: add more logging to QT components
This commit is contained in:
parent
3e04967309
commit
5b30d25387
|
@ -82,6 +82,12 @@ pipeline {
|
||||||
|
|
||||||
/* Runtime flag to make testing of the app easier. Switched off: unpredictable app behavior under new tests */
|
/* Runtime flag to make testing of the app easier. Switched off: unpredictable app behavior under new tests */
|
||||||
/* STATUS_RUNTIME_TEST_MODE = 'True' */
|
/* STATUS_RUNTIME_TEST_MODE = 'True' */
|
||||||
|
|
||||||
|
/* Logging rules let you enable or disable logging for categories */
|
||||||
|
QT_LOGGING_RULES = '*.warning=true'
|
||||||
|
|
||||||
|
/* Set to a non-zero value to make Qt print out diagnostic information about the each (C++) plugin it tries to load. */
|
||||||
|
QT_DEBUG_PLUGINS = 0
|
||||||
}
|
}
|
||||||
|
|
||||||
stages {
|
stages {
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
import time
|
||||||
|
|
||||||
import allure
|
import allure
|
||||||
import logging
|
import logging
|
||||||
import cv2
|
import cv2
|
||||||
|
@ -117,6 +119,7 @@ class AUT:
|
||||||
LOG.info('Stopping AUT: %s', self.path)
|
LOG.info('Stopping AUT: %s', self.path)
|
||||||
self.detach_context()
|
self.detach_context()
|
||||||
local_system.kill_process(self.pid)
|
local_system.kill_process(self.pid)
|
||||||
|
time.sleep(1)
|
||||||
|
|
||||||
@allure.step("Start and attach AUT")
|
@allure.step("Start and attach AUT")
|
||||||
def launch(self) -> 'AUT':
|
def launch(self) -> 'AUT':
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
import logging
|
import logging
|
||||||
|
import time
|
||||||
import typing
|
import typing
|
||||||
|
|
||||||
import configs.testpath
|
import configs.testpath
|
||||||
|
@ -43,6 +44,7 @@ class SquishServer:
|
||||||
return
|
return
|
||||||
LOG.info('Stopping Squish Server with PID: %d', cls.pid)
|
LOG.info('Stopping Squish Server with PID: %d', cls.pid)
|
||||||
local_system.kill_process(cls.pid)
|
local_system.kill_process(cls.pid)
|
||||||
|
time.sleep(1)
|
||||||
cls.pid = None
|
cls.pid = None
|
||||||
cls.port = None
|
cls.port = None
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue