diff --git a/__init__.py b/__init__.py index a9c7849..88193ee 100644 --- a/__init__.py +++ b/__init__.py @@ -29,13 +29,17 @@ report (Report Module) __DEPENDENCIES__ = [] import collections +import json import logging from logging.config import dictConfig import os import sys -logger_name = 'REPORT' -logger = logging.getLogger(logger_name) +try: + from config import APP_NAME as ROOT_LOGGER_NAME +except ImportError: + ROOT_LOGGER_NAME = 'root' +logger = logging.getLogger(ROOT_LOGGER_NAME).getChild(__name__) __DESCRIPTION__ = """The Module {\\tt %s} is designed to help with python logging and to support some handlers for logging to memory. For more Information read the sphinx documentation.""" % __name__.replace('_', '\_') @@ -151,10 +155,18 @@ class collectingTestcaseHandler(collectingHandler): self.MY_LOGS.append(record.__dict__) self.MY_LOGS[-1]['moduleLogger'] = collectingHandler().get_logs() -def appLoggingConfigure(basepath, target, log_name_lvl=[], fmt=SHORT_FMT, ring_logs=None): + +class JsonFormatter(logging.Formatter): + def format(self, record): + obj = {} + for key in ["name", "levelno", "levelname", "pathname", "filename", "module", "lineno", "funcName", "created", "msecs", "relativeCreated", "thread", "threadName", "process", "processName", "msg", "args", "exc_info", "exc_text"]: + obj[key] = getattr(record, key) + obj["msg"] = obj["msg"] % obj["args"] + return json.dumps(obj) + + +def appLoggingConfigure(basepath, target, log_name_lvl=[], fmt=SHORT_FMT, ring_logs=None, host=None, port=None): target_handlers = ['main', ] - if basepath is not None: - target_handlers.append('logwarn') # define handler # if target == 'stdout': @@ -167,7 +179,7 @@ def appLoggingConfigure(basepath, target, log_name_lvl=[], fmt=SHORT_FMT, ring_l elif target == 'logfile': handler = dict(main={ 'level': 'DEBUG', - 'formatter': 'format', + 'formatter': 'json', 'class': 'logging.handlers.RotatingFileHandler', 'filename': os.path.join(basepath, 'messages.log'), 'mode': 'a', @@ -180,22 +192,20 @@ def appLoggingConfigure(basepath, target, log_name_lvl=[], fmt=SHORT_FMT, ring_l 'formatter': 'my_format', 'class': 'logging.NullHandler', }) + if host is not None and port is not None: + target_handlers.append('socket') + handler['socket']={ + 'level': 'DEBUG', + 'class': 'logging.handlers.SocketHandler', + 'host': host, + 'port': port + } if ring_logs is not None: target_handlers.append('ring') handler['ring'] = { 'class': 'report.collectingRingHandler', 'max_logs': ring_logs, } - if basepath is not None: - handler['logwarn'] = { - 'level': 'WARNING', - 'formatter': 'long', - 'class': 'logging.handlers.RotatingFileHandler', - 'filename': os.path.join(basepath, 'messages.warn'), - 'mode': 'a', - 'maxBytes': 10485760, - 'backupCount': 2 - } # define loggers # loggers = {} @@ -210,6 +220,9 @@ def appLoggingConfigure(basepath, target, log_name_lvl=[], fmt=SHORT_FMT, ring_l dictConfig(dict( version=1, formatters={ + 'json': { + '()': JsonFormatter + }, 'long': { 'format': LONG_FMT }, diff --git a/_testresults_/unittest.json b/_testresults_/unittest.json index fb62882..678e3b2 100644 --- a/_testresults_/unittest.json +++ b/_testresults_/unittest.json @@ -35,108 +35,98 @@ }, { "coverage_state": "covered", - "end": 35, + "end": 36, "start": 31 }, { "coverage_state": "clean", - "end": 36, - "start": 36 - }, - { - "coverage_state": "covered", - "end": 38, + "end": 37, "start": 37 }, - { - "coverage_state": "clean", - "end": 39, - "start": 39 - }, { "coverage_state": "covered", - "end": 40, - "start": 40 - }, - { - "coverage_state": "clean", "end": 42, - "start": 41 + "start": 38 }, { - "coverage_state": "covered", + "coverage_state": "clean", "end": 43, "start": 43 }, { - "coverage_state": "clean", - "end": 45, + "coverage_state": "covered", + "end": 44, "start": 44 }, { - "coverage_state": "covered", + "coverage_state": "clean", "end": 46, - "start": 46 + "start": 45 }, { - "coverage_state": "clean", + "coverage_state": "covered", "end": 47, "start": 47 }, { - "coverage_state": "covered", - "end": 48, + "coverage_state": "clean", + "end": 49, "start": 48 }, + { + "coverage_state": "covered", + "end": 50, + "start": 50 + }, { "coverage_state": "clean", - "end": 52, - "start": 49 + "end": 51, + "start": 51 }, { "coverage_state": "covered", - "end": 53, + "end": 52, + "start": 52 + }, + { + "coverage_state": "clean", + "end": 56, "start": 53 }, - { - "coverage_state": "clean", - "end": 69, - "start": 54 - }, { "coverage_state": "covered", - "end": 70, - "start": 70 + "end": 57, + "start": 57 }, { "coverage_state": "clean", "end": 73, - "start": 71 + "start": 58 }, { "coverage_state": "covered", - "end": 75, + "end": 74, "start": 74 }, { "coverage_state": "clean", - "end": 76, - "start": 76 + "end": 77, + "start": 75 }, { "coverage_state": "covered", - "end": 80, - "start": 77 + "end": 79, + "start": 78 }, { "coverage_state": "clean", - "end": 81, - "start": 81 + "end": 80, + "start": 80 }, { "coverage_state": "covered", "end": 84, - "start": 82 + "start": 81 }, { "coverage_state": "clean", @@ -145,28 +135,28 @@ }, { "coverage_state": "covered", - "end": 87, + "end": 88, "start": 86 }, { "coverage_state": "clean", - "end": 88, - "start": 88 - }, - { - "coverage_state": "covered", - "end": 93, + "end": 89, "start": 89 }, + { + "coverage_state": "covered", + "end": 91, + "start": 90 + }, { "coverage_state": "clean", - "end": 94, - "start": 94 + "end": 92, + "start": 92 }, { "coverage_state": "covered", "end": 97, - "start": 95 + "start": 93 }, { "coverage_state": "clean", @@ -175,88 +165,78 @@ }, { "coverage_state": "covered", - "end": 100, + "end": 101, "start": 99 }, { "coverage_state": "clean", - "end": 101, - "start": 101 - }, - { - "coverage_state": "covered", "end": 102, "start": 102 }, { - "coverage_state": "uncovered", - "end": 103, + "coverage_state": "covered", + "end": 104, "start": 103 }, { "coverage_state": "clean", "end": 105, - "start": 104 + "start": 105 }, { "coverage_state": "covered", - "end": 107, + "end": 106, "start": 106 }, + { + "coverage_state": "uncovered", + "end": 107, + "start": 107 + }, { "coverage_state": "clean", - "end": 108, + "end": 109, "start": 108 }, { "coverage_state": "covered", - "end": 112, - "start": 109 + "end": 111, + "start": 110 }, { "coverage_state": "clean", - "end": 113, + "end": 112, + "start": 112 + }, + { + "coverage_state": "covered", + "end": 116, "start": 113 }, - { - "coverage_state": "covered", - "end": 115, - "start": 114 - }, { "coverage_state": "clean", - "end": 116, - "start": 116 + "end": 117, + "start": 117 }, { "coverage_state": "covered", - "end": 118, - "start": 117 + "end": 119, + "start": 118 }, { "coverage_state": "clean", "end": 120, - "start": 119 + "start": 120 }, { "coverage_state": "covered", - "end": 121, + "end": 122, "start": 121 }, - { - "coverage_state": "clean", - "end": 122, - "start": 122 - }, - { - "coverage_state": "covered", - "end": 123, - "start": 123 - }, { "coverage_state": "clean", "end": 124, - "start": 124 + "start": 123 }, { "coverage_state": "covered", @@ -285,263 +265,248 @@ }, { "coverage_state": "clean", - "end": 136, + "end": 130, "start": 130 }, { "coverage_state": "covered", - "end": 137, - "start": 137 + "end": 131, + "start": 131 }, { "coverage_state": "clean", - "end": 145, - "start": 138 + "end": 132, + "start": 132 }, { "coverage_state": "covered", - "end": 147, - "start": 146 + "end": 133, + "start": 133 }, { "coverage_state": "clean", - "end": 148, - "start": 148 + "end": 140, + "start": 134 }, { "coverage_state": "covered", + "end": 141, + "start": 141 + }, + { + "coverage_state": "clean", + "end": 149, + "start": 142 + }, + { + "coverage_state": "covered", + "end": 151, + "start": 150 + }, + { + "coverage_state": "clean", "end": 152, - "start": 149 + "start": 152 }, { - "coverage_state": "clean", - "end": 153, + "coverage_state": "covered", + "end": 156, "start": 153 }, + { + "coverage_state": "clean", + "end": 158, + "start": 157 + }, { "coverage_state": "covered", - "end": 154, - "start": 154 + "end": 160, + "start": 159 }, { "coverage_state": "uncovered", - "end": 157, - "start": 155 + "end": 165, + "start": 161 }, { "coverage_state": "clean", - "end": 159, - "start": 158 + "end": 167, + "start": 166 }, { - "coverage_state": "uncovered", - "end": 161, - "start": 160 - }, - { - "coverage_state": "clean", - "end": 166, - "start": 162 - }, - { - "coverage_state": "uncovered", + "coverage_state": "covered", "end": 168, - "start": 167 + "start": 168 }, { - "coverage_state": "clean", - "end": 177, + "coverage_state": "uncovered", + "end": 169, "start": 169 }, + { + "coverage_state": "clean", + "end": 171, + "start": 170 + }, { "coverage_state": "uncovered", - "end": 178, - "start": 178 + "end": 173, + "start": 172 }, { "coverage_state": "clean", - "end": 182, + "end": 178, + "start": 174 + }, + { + "coverage_state": "uncovered", + "end": 180, "start": 179 }, - { - "coverage_state": "uncovered", - "end": 185, - "start": 183 - }, { "coverage_state": "clean", - "end": 188, - "start": 186 + "end": 189, + "start": 181 }, { "coverage_state": "uncovered", "end": 190, - "start": 189 + "start": 190 }, { "coverage_state": "clean", - "end": 200, + "end": 194, "start": 191 }, { "coverage_state": "uncovered", - "end": 203, - "start": 201 + "end": 197, + "start": 195 }, { "coverage_state": "clean", - "end": 209, - "start": 204 + "end": 202, + "start": 198 }, { "coverage_state": "uncovered", - "end": 210, - "start": 210 + "end": 205, + "start": 203 }, { "coverage_state": "clean", - "end": 224, + "end": 210, + "start": 206 + }, + { + "coverage_state": "uncovered", + "end": 213, "start": 211 }, { - "coverage_state": "covered", - "end": 225, - "start": 225 + "coverage_state": "clean", + "end": 219, + "start": 214 }, { "coverage_state": "uncovered", - "end": 226, - "start": 226 + "end": 220, + "start": 220 }, { "coverage_state": "clean", - "end": 228, - "start": 227 + "end": 237, + "start": 221 }, { "coverage_state": "covered", + "end": 238, + "start": 238 + }, + { + "coverage_state": "uncovered", "end": 239, - "start": 229 + "start": 239 }, { "coverage_state": "clean", - "end": 240, + "end": 241, "start": 240 }, { "coverage_state": "covered", - "end": 241, - "start": 241 - }, - { - "coverage_state": "clean", - "end": 251, + "end": 252, "start": 242 }, + { + "coverage_state": "clean", + "end": 253, + "start": 253 + }, { "coverage_state": "covered", - "end": 256, - "start": 252 + "end": 254, + "start": 254 }, { "coverage_state": "clean", - "end": 257, - "start": 257 - }, - { - "coverage_state": "covered", - "end": 262, - "start": 258 - }, - { - "coverage_state": "clean", - "end": 263, - "start": 263 - }, - { - "coverage_state": "covered", "end": 264, - "start": 264 + "start": 255 }, { - "coverage_state": "clean", - "end": 267, + "coverage_state": "covered", + "end": 269, "start": 265 }, + { + "coverage_state": "clean", + "end": 270, + "start": 270 + }, { "coverage_state": "covered", - "end": 268, - "start": 268 + "end": 275, + "start": 271 }, { "coverage_state": "clean", - "end": 296, - "start": 269 + "end": 276, + "start": 276 }, { "coverage_state": "covered", - "end": 297, - "start": 297 + "end": 277, + "start": 277 }, { "coverage_state": "clean", - "end": 298, - "start": 298 + "end": 280, + "start": 278 }, { "coverage_state": "covered", - "end": 304, - "start": 299 + "end": 281, + "start": 281 }, { "coverage_state": "clean", - "end": 305, - "start": 305 - }, - { - "coverage_state": "covered", - "end": 306, - "start": 306 - }, - { - "coverage_state": "partially-covered", - "end": 307, - "start": 307 - }, - { - "coverage_state": "covered", "end": 309, - "start": 308 + "start": 282 }, { - "coverage_state": "partially-covered", + "coverage_state": "covered", "end": 310, "start": 310 }, { - "coverage_state": "uncovered", + "coverage_state": "clean", "end": 311, "start": 311 }, - { - "coverage_state": "covered", - "end": 312, - "start": 312 - }, - { - "coverage_state": "partially-covered", - "end": 313, - "start": 313 - }, - { - "coverage_state": "uncovered", - "end": 314, - "start": 314 - }, { "coverage_state": "covered", "end": 317, - "start": 315 + "start": 312 }, { "coverage_state": "clean", @@ -560,56 +525,76 @@ }, { "coverage_state": "covered", - "end": 321, + "end": 322, "start": 321 }, { - "coverage_state": "clean", + "coverage_state": "partially-covered", + "end": 323, + "start": 323 + }, + { + "coverage_state": "uncovered", "end": 324, - "start": 322 + "start": 324 }, { "coverage_state": "covered", - "end": 326, + "end": 325, "start": 325 }, { "coverage_state": "partially-covered", + "end": 326, + "start": 326 + }, + { + "coverage_state": "uncovered", "end": 327, "start": 327 }, { - "coverage_state": "uncovered", - "end": 328, + "coverage_state": "covered", + "end": 330, "start": 328 }, - { - "coverage_state": "covered", - "end": 330, - "start": 329 - }, { "coverage_state": "clean", - "end": 333, + "end": 331, "start": 331 }, { "coverage_state": "covered", - "end": 336, + "end": 332, + "start": 332 + }, + { + "coverage_state": "partially-covered", + "end": 333, + "start": 333 + }, + { + "coverage_state": "covered", + "end": 334, "start": 334 }, { "coverage_state": "clean", "end": 337, - "start": 337 + "start": 335 }, { "coverage_state": "covered", - "end": 340, + "end": 339, "start": 338 }, { - "coverage_state": "clean", + "coverage_state": "partially-covered", + "end": 340, + "start": 340 + }, + { + "coverage_state": "uncovered", "end": 341, "start": 341 }, @@ -618,35 +603,25 @@ "end": 343, "start": 342 }, - { - "coverage_state": "uncovered", - "end": 345, - "start": 344 - }, { "coverage_state": "clean", - "end": 348, - "start": 346 + "end": 346, + "start": 344 }, { "coverage_state": "covered", "end": 349, - "start": 349 + "start": 347 }, { - "coverage_state": "partially-covered", + "coverage_state": "clean", "end": 350, "start": 350 }, { "coverage_state": "covered", - "end": 351, - "start": 351 - }, - { - "coverage_state": "uncovered", "end": 353, - "start": 352 + "start": 351 }, { "coverage_state": "clean", @@ -654,41 +629,81 @@ "start": 354 }, { - "coverage_state": "uncovered", - "end": 355, + "coverage_state": "covered", + "end": 356, "start": 355 }, { - "coverage_state": "clean", - "end": 356, - "start": 356 - }, - { - "coverage_state": "covered", - "end": 359, + "coverage_state": "uncovered", + "end": 358, "start": 357 }, { "coverage_state": "clean", - "end": 360, - "start": 360 + "end": 361, + "start": 359 }, { "coverage_state": "covered", "end": 362, - "start": 361 + "start": 362 + }, + { + "coverage_state": "partially-covered", + "end": 363, + "start": 363 + }, + { + "coverage_state": "covered", + "end": 364, + "start": 364 + }, + { + "coverage_state": "uncovered", + "end": 366, + "start": 365 + }, + { + "coverage_state": "clean", + "end": 367, + "start": 367 + }, + { + "coverage_state": "uncovered", + "end": 368, + "start": 368 + }, + { + "coverage_state": "clean", + "end": 369, + "start": 369 + }, + { + "coverage_state": "covered", + "end": 372, + "start": 370 + }, + { + "coverage_state": "clean", + "end": 373, + "start": 373 + }, + { + "coverage_state": "covered", + "end": 375, + "start": 374 }, { "coverage_state": "clean", "end": null, - "start": 363 + "start": 376 } ], - "line_coverage": 82.35, + "line_coverage": 80.97999999999999, "name": "report.__init__.py" } ], - "line_coverage": 82.35, + "line_coverage": 80.97999999999999, "name": "report" } ], @@ -780,9 +795,9 @@ }, "system_information": { "Architecture": "64bit", - "Distribution": "LinuxMint 19.3 tricia", + "Distribution": "Linux Mint 20 ulyana", "Hostname": "ahorn", - "Kernel": "5.3.0-26-generic (#28~18.04.1-Ubuntu SMP Wed Dec 18 16:40:14 UTC 2019)", + "Kernel": "5.4.0-58-generic (#64-Ubuntu SMP Wed Dec 9 08:16:25 UTC 2020)", "Machine": "x86_64", "Path": "/user_data/data/dirk/prj/unittest/report/unittest", "System": "Linux", @@ -794,7 +809,7 @@ "Name": "report", "State": "Released", "Supported Interpreters": "python2, python3", - "Version": "05cf9f57aa192a511c9cbe3ee2ec43fc" + "Version": "8f7c85c45e72c364342dcebaf79cd1d2" }, "testrun_list": [ { @@ -808,7 +823,7 @@ "_XzMFcHYZEem_kd-7nxt1sg": "Store log records (collectingHandler)", "_fW5s8CzQEeqYsdFh5Cd6ng": "Number of stored logs in the RingHandler" }, - "interpreter": "python 2.7.17 (final)", + "interpreter": "python 2.7.18 (final)", "name": "Default Testsession name", "number_of_failed_tests": 0, "number_of_possibly_failed_tests": 0, @@ -824,8 +839,8 @@ "testcases": { "_ErFPoCvVEeqssZLMJF_fcg": { "args": null, - "asctime": "2020-01-28 20:37:38,681", - "created": 1580240258.681071, + "asctime": "2020-12-21 01:18:51,705", + "created": 1608509931.705525, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -836,18 +851,18 @@ "message": "_ErFPoCvVEeqssZLMJF_fcg", "module": "__init__", "moduleLogger": [], - "msecs": 681.0710430145264, + "msecs": 705.5249214172363, "msg": "_ErFPoCvVEeqssZLMJF_fcg", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/report/unittest/src/tests/__init__.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 47.26910591125488, + "relativeCreated": 30.5788516998291, "testcaseLogger": [ { "args": [], - "asctime": "2020-01-28 20:37:38,683", - "created": 1580240258.68345, + "asctime": "2020-12-21 01:18:51,706", + "created": 1608509931.706451, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -860,8 +875,8 @@ "moduleLogger": [ { "args": [], - "asctime": "2020-01-28 20:37:38,681", - "created": 1580240258.681294, + "asctime": "2020-12-21 01:18:51,705", + "created": 1608509931.705603, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -871,14 +886,14 @@ "lineno": 22, "message": "Configuring collecting logger", "module": "test_helpers", - "msecs": 681.2939643859863, + "msecs": 705.6028842926025, "msg": "Configuring collecting logger", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 47.492027282714844, - "thread": 140535171049280, + "relativeCreated": 30.656814575195312, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -887,8 +902,8 @@ "DEBUG", "collectingHandler" ], - "asctime": "2020-01-28 20:37:38,681", - "created": 1580240258.681489, + "asctime": "2020-12-21 01:18:51,705", + "created": 1608509931.705677, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -898,14 +913,14 @@ "lineno": 36, "message": "Passing \"Log entry number 1 with level DEBUG.\" to collectingHandler.", "module": "test_helpers", - "msecs": 681.4889907836914, + "msecs": 705.6770324707031, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 47.68705368041992, - "thread": 140535171049280, + "relativeCreated": 30.7309627532959, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -914,8 +929,8 @@ "INFO", "collectingHandler" ], - "asctime": "2020-01-28 20:37:38,681", - "created": 1580240258.681805, + "asctime": "2020-12-21 01:18:51,705", + "created": 1608509931.705791, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -925,14 +940,14 @@ "lineno": 36, "message": "Passing \"Log entry number 2 with level INFO.\" to collectingHandler.", "module": "test_helpers", - "msecs": 681.804895401001, + "msecs": 705.7909965515137, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 48.00295829772949, - "thread": 140535171049280, + "relativeCreated": 30.844926834106445, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -941,8 +956,8 @@ "WARNING", "collectingHandler" ], - "asctime": "2020-01-28 20:37:38,682", - "created": 1580240258.68212, + "asctime": "2020-12-21 01:18:51,705", + "created": 1608509931.705897, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -952,14 +967,14 @@ "lineno": 36, "message": "Passing \"Log entry number 3 with level WARNING.\" to collectingHandler.", "module": "test_helpers", - "msecs": 682.1200847625732, + "msecs": 705.8970928192139, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 48.31814765930176, - "thread": 140535171049280, + "relativeCreated": 30.95102310180664, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -968,8 +983,8 @@ "ERROR", "collectingHandler" ], - "asctime": "2020-01-28 20:37:38,682", - "created": 1580240258.682555, + "asctime": "2020-12-21 01:18:51,706", + "created": 1608509931.706001, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -979,14 +994,14 @@ "lineno": 36, "message": "Passing \"Log entry number 4 with level ERROR.\" to collectingHandler.", "module": "test_helpers", - "msecs": 682.5549602508545, + "msecs": 706.0010433197021, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 48.75302314758301, - "thread": 140535171049280, + "relativeCreated": 31.054973602294922, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -995,8 +1010,8 @@ "CRITICAL", "collectingHandler" ], - "asctime": "2020-01-28 20:37:38,682", - "created": 1580240258.682891, + "asctime": "2020-12-21 01:18:51,706", + "created": 1608509931.706104, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -1006,14 +1021,14 @@ "lineno": 36, "message": "Passing \"Log entry number 5 with level CRITICAL.\" to collectingHandler.", "module": "test_helpers", - "msecs": 682.8908920288086, + "msecs": 706.104040145874, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 49.08895492553711, - "thread": 140535171049280, + "relativeCreated": 31.157970428466797, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -1022,8 +1037,8 @@ "INFO", "collectingHandler" ], - "asctime": "2020-01-28 20:37:38,683", - "created": 1580240258.683111, + "asctime": "2020-12-21 01:18:51,706", + "created": 1608509931.706246, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -1033,14 +1048,14 @@ "lineno": 36, "message": "Passing \"Log entry number 6 with level INFO.\" to collectingHandler.", "module": "test_helpers", - "msecs": 683.1109523773193, + "msecs": 706.2458992004395, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 49.30901527404785, - "thread": 140535171049280, + "relativeCreated": 31.299829483032227, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -1049,8 +1064,8 @@ "ERROR", "collectingHandler" ], - "asctime": "2020-01-28 20:37:38,683", - "created": 1580240258.683284, + "asctime": "2020-12-21 01:18:51,706", + "created": 1608509931.706348, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -1060,32 +1075,32 @@ "lineno": 36, "message": "Passing \"Log entry number 7 with level ERROR.\" to collectingHandler.", "module": "test_helpers", - "msecs": 683.2840442657471, + "msecs": 706.3479423522949, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 49.482107162475586, - "thread": 140535171049280, + "relativeCreated": 31.401872634887695, + "thread": 140208879470400, "threadName": "MainThread" } ], - "msecs": 683.4499835968018, + "msecs": 706.4509391784668, "msg": "Running logger test sequence.", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 49.64804649353027, - "thread": 140535171049280, + "relativeCreated": 31.50486946105957, + "thread": 140208879470400, "threadName": "MainThread", - "time_consumption": 0.0001659393310546875 + "time_consumption": 0.000102996826171875 }, { "args": [], - "asctime": "2020-01-28 20:37:38,684", - "created": 1580240258.68495, + "asctime": "2020-12-21 01:18:51,707", + "created": 1608509931.707568, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -1102,8 +1117,8 @@ "[ 49, 134, 221, 309, 398, 486, 571 ]", "" ], - "asctime": "2020-01-28 20:37:38,683", - "created": 1580240258.683757, + "asctime": "2020-12-21 01:18:51,706", + "created": 1608509931.706571, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -1113,14 +1128,14 @@ "lineno": 22, "message": "Result (Indexlist of log entries in stringrepresentation): [ 49, 134, 221, 309, 398, 486, 571 ] ()", "module": "test", - "msecs": 683.7570667266846, + "msecs": 706.571102142334, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 49.955129623413086, - "thread": 140535171049280, + "relativeCreated": 31.625032424926758, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -1129,8 +1144,8 @@ "[ 49, 134, 221, 309, 398, 486, 571 ]", "" ], - "asctime": "2020-01-28 20:37:38,683", - "created": 1580240258.683874, + "asctime": "2020-12-21 01:18:51,706", + "created": 1608509931.706625, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -1140,14 +1155,14 @@ "lineno": 26, "message": "Expectation (Indexlist of log entries in stringrepresentation): result = [ 49, 134, 221, 309, 398, 486, 571 ] ()", "module": "test", - "msecs": 683.8738918304443, + "msecs": 706.6249847412109, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 50.07195472717285, - "thread": 140535171049280, + "relativeCreated": 31.67891502380371, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -1156,8 +1171,8 @@ "49", "" ], - "asctime": "2020-01-28 20:37:38,683", - "created": 1580240258.683953, + "asctime": "2020-12-21 01:18:51,706", + "created": 1608509931.706673, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -1167,14 +1182,14 @@ "lineno": 22, "message": "Result (Submitted value number 1): 49 ()", "module": "test", - "msecs": 683.953046798706, + "msecs": 706.6729068756104, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 50.15110969543457, - "thread": 140535171049280, + "relativeCreated": 31.726837158203125, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -1183,8 +1198,8 @@ "49", "" ], - "asctime": "2020-01-28 20:37:38,684", - "created": 1580240258.684001, + "asctime": "2020-12-21 01:18:51,706", + "created": 1608509931.706715, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -1194,14 +1209,14 @@ "lineno": 26, "message": "Expectation (Submitted value number 1): result = 49 ()", "module": "test", - "msecs": 684.0009689331055, + "msecs": 706.7151069641113, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 50.199031829833984, - "thread": 140535171049280, + "relativeCreated": 31.7690372467041, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -1209,8 +1224,8 @@ "49", "" ], - "asctime": "2020-01-28 20:37:38,684", - "created": 1580240258.684061, + "asctime": "2020-12-21 01:18:51,706", + "created": 1608509931.706764, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -1220,14 +1235,14 @@ "lineno": 142, "message": "Submitted value number 1 is correct (Content 49 and Type is ).", "module": "test", - "msecs": 684.0610504150391, + "msecs": 706.7639827728271, "msg": "Submitted value number 1 is correct (Content %s and Type is %s).", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 50.25911331176758, - "thread": 140535171049280, + "relativeCreated": 31.817913055419922, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -1236,8 +1251,8 @@ "134", "" ], - "asctime": "2020-01-28 20:37:38,684", - "created": 1580240258.684142, + "asctime": "2020-12-21 01:18:51,706", + "created": 1608509931.70681, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -1247,14 +1262,14 @@ "lineno": 22, "message": "Result (Submitted value number 2): 134 ()", "module": "test", - "msecs": 684.1421127319336, + "msecs": 706.8099975585938, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 50.34017562866211, - "thread": 140535171049280, + "relativeCreated": 31.863927841186523, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -1263,8 +1278,8 @@ "134", "" ], - "asctime": "2020-01-28 20:37:38,684", - "created": 1580240258.684219, + "asctime": "2020-12-21 01:18:51,706", + "created": 1608509931.706851, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -1274,14 +1289,14 @@ "lineno": 26, "message": "Expectation (Submitted value number 2): result = 134 ()", "module": "test", - "msecs": 684.2188835144043, + "msecs": 706.8510055541992, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 50.41694641113281, - "thread": 140535171049280, + "relativeCreated": 31.904935836791992, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -1289,8 +1304,8 @@ "134", "" ], - "asctime": "2020-01-28 20:37:38,684", - "created": 1580240258.684269, + "asctime": "2020-12-21 01:18:51,706", + "created": 1608509931.706896, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -1300,14 +1315,14 @@ "lineno": 142, "message": "Submitted value number 2 is correct (Content 134 and Type is ).", "module": "test", - "msecs": 684.2689514160156, + "msecs": 706.8960666656494, "msg": "Submitted value number 2 is correct (Content %s and Type is %s).", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 50.46701431274414, - "thread": 140535171049280, + "relativeCreated": 31.949996948242188, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -1316,8 +1331,8 @@ "221", "" ], - "asctime": "2020-01-28 20:37:38,684", - "created": 1580240258.684314, + "asctime": "2020-12-21 01:18:51,706", + "created": 1608509931.706938, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -1327,14 +1342,14 @@ "lineno": 22, "message": "Result (Submitted value number 3): 221 ()", "module": "test", - "msecs": 684.3140125274658, + "msecs": 706.9380283355713, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 50.512075424194336, - "thread": 140535171049280, + "relativeCreated": 31.991958618164062, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -1343,8 +1358,8 @@ "221", "" ], - "asctime": "2020-01-28 20:37:38,684", - "created": 1580240258.684359, + "asctime": "2020-12-21 01:18:51,706", + "created": 1608509931.706981, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -1354,14 +1369,14 @@ "lineno": 26, "message": "Expectation (Submitted value number 3): result = 221 ()", "module": "test", - "msecs": 684.359073638916, + "msecs": 706.9809436798096, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 50.55713653564453, - "thread": 140535171049280, + "relativeCreated": 32.034873962402344, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -1369,8 +1384,8 @@ "221", "" ], - "asctime": "2020-01-28 20:37:38,684", - "created": 1580240258.6844, + "asctime": "2020-12-21 01:18:51,707", + "created": 1608509931.707023, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -1380,14 +1395,14 @@ "lineno": 142, "message": "Submitted value number 3 is correct (Content 221 and Type is ).", "module": "test", - "msecs": 684.4000816345215, + "msecs": 707.0229053497314, "msg": "Submitted value number 3 is correct (Content %s and Type is %s).", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 50.59814453125, - "thread": 140535171049280, + "relativeCreated": 32.07683563232422, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -1396,8 +1411,8 @@ "309", "" ], - "asctime": "2020-01-28 20:37:38,684", - "created": 1580240258.684441, + "asctime": "2020-12-21 01:18:51,707", + "created": 1608509931.707064, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -1407,14 +1422,14 @@ "lineno": 22, "message": "Result (Submitted value number 4): 309 ()", "module": "test", - "msecs": 684.441089630127, + "msecs": 707.0639133453369, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 50.63915252685547, - "thread": 140535171049280, + "relativeCreated": 32.11784362792969, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -1423,8 +1438,8 @@ "309", "" ], - "asctime": "2020-01-28 20:37:38,684", - "created": 1580240258.684481, + "asctime": "2020-12-21 01:18:51,707", + "created": 1608509931.707105, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -1434,14 +1449,14 @@ "lineno": 26, "message": "Expectation (Submitted value number 4): result = 309 ()", "module": "test", - "msecs": 684.4809055328369, + "msecs": 707.1049213409424, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 50.67896842956543, - "thread": 140535171049280, + "relativeCreated": 32.158851623535156, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -1449,8 +1464,8 @@ "309", "" ], - "asctime": "2020-01-28 20:37:38,684", - "created": 1580240258.684527, + "asctime": "2020-12-21 01:18:51,707", + "created": 1608509931.70715, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -1460,14 +1475,14 @@ "lineno": 142, "message": "Submitted value number 4 is correct (Content 309 and Type is ).", "module": "test", - "msecs": 684.5269203186035, + "msecs": 707.1499824523926, "msg": "Submitted value number 4 is correct (Content %s and Type is %s).", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 50.72498321533203, - "thread": 140535171049280, + "relativeCreated": 32.20391273498535, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -1476,8 +1491,8 @@ "398", "" ], - "asctime": "2020-01-28 20:37:38,684", - "created": 1580240258.684571, + "asctime": "2020-12-21 01:18:51,707", + "created": 1608509931.707192, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -1487,14 +1502,14 @@ "lineno": 22, "message": "Result (Submitted value number 5): 398 ()", "module": "test", - "msecs": 684.5710277557373, + "msecs": 707.1919441223145, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 50.76909065246582, - "thread": 140535171049280, + "relativeCreated": 32.24587440490723, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -1503,8 +1518,8 @@ "398", "" ], - "asctime": "2020-01-28 20:37:38,684", - "created": 1580240258.684613, + "asctime": "2020-12-21 01:18:51,707", + "created": 1608509931.707232, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -1514,14 +1529,14 @@ "lineno": 26, "message": "Expectation (Submitted value number 5): result = 398 ()", "module": "test", - "msecs": 684.6129894256592, + "msecs": 707.2319984436035, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 50.811052322387695, - "thread": 140535171049280, + "relativeCreated": 32.28592872619629, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -1529,8 +1544,8 @@ "398", "" ], - "asctime": "2020-01-28 20:37:38,684", - "created": 1580240258.684653, + "asctime": "2020-12-21 01:18:51,707", + "created": 1608509931.707274, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -1540,14 +1555,14 @@ "lineno": 142, "message": "Submitted value number 5 is correct (Content 398 and Type is ).", "module": "test", - "msecs": 684.6530437469482, + "msecs": 707.2739601135254, "msg": "Submitted value number 5 is correct (Content %s and Type is %s).", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 50.85110664367676, - "thread": 140535171049280, + "relativeCreated": 32.327890396118164, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -1556,8 +1571,8 @@ "486", "" ], - "asctime": "2020-01-28 20:37:38,684", - "created": 1580240258.684695, + "asctime": "2020-12-21 01:18:51,707", + "created": 1608509931.707318, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -1567,14 +1582,14 @@ "lineno": 22, "message": "Result (Submitted value number 6): 486 ()", "module": "test", - "msecs": 684.6950054168701, + "msecs": 707.3180675506592, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 50.89306831359863, - "thread": 140535171049280, + "relativeCreated": 32.37199783325195, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -1583,8 +1598,8 @@ "486", "" ], - "asctime": "2020-01-28 20:37:38,684", - "created": 1580240258.684739, + "asctime": "2020-12-21 01:18:51,707", + "created": 1608509931.707358, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -1594,14 +1609,14 @@ "lineno": 26, "message": "Expectation (Submitted value number 6): result = 486 ()", "module": "test", - "msecs": 684.7391128540039, + "msecs": 707.3578834533691, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 50.93717575073242, - "thread": 140535171049280, + "relativeCreated": 32.411813735961914, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -1609,8 +1624,8 @@ "486", "" ], - "asctime": "2020-01-28 20:37:38,684", - "created": 1580240258.684789, + "asctime": "2020-12-21 01:18:51,707", + "created": 1608509931.7074, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -1620,14 +1635,14 @@ "lineno": 142, "message": "Submitted value number 6 is correct (Content 486 and Type is ).", "module": "test", - "msecs": 684.7889423370361, + "msecs": 707.4000835418701, "msg": "Submitted value number 6 is correct (Content %s and Type is %s).", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 50.98700523376465, - "thread": 140535171049280, + "relativeCreated": 32.45401382446289, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -1636,8 +1651,8 @@ "571", "" ], - "asctime": "2020-01-28 20:37:38,684", - "created": 1580240258.684829, + "asctime": "2020-12-21 01:18:51,707", + "created": 1608509931.707443, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -1647,14 +1662,14 @@ "lineno": 22, "message": "Result (Submitted value number 7): 571 ()", "module": "test", - "msecs": 684.8289966583252, + "msecs": 707.4429988861084, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 51.02705955505371, - "thread": 140535171049280, + "relativeCreated": 32.49692916870117, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -1663,8 +1678,8 @@ "571", "" ], - "asctime": "2020-01-28 20:37:38,684", - "created": 1580240258.684868, + "asctime": "2020-12-21 01:18:51,707", + "created": 1608509931.707485, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -1674,14 +1689,14 @@ "lineno": 26, "message": "Expectation (Submitted value number 7): result = 571 ()", "module": "test", - "msecs": 684.8680973052979, + "msecs": 707.4849605560303, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 51.06616020202637, - "thread": 140535171049280, + "relativeCreated": 32.53889083862305, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -1689,8 +1704,8 @@ "571", "" ], - "asctime": "2020-01-28 20:37:38,684", - "created": 1580240258.684908, + "asctime": "2020-12-21 01:18:51,707", + "created": 1608509931.707528, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -1700,39 +1715,39 @@ "lineno": 142, "message": "Submitted value number 7 is correct (Content 571 and Type is ).", "module": "test", - "msecs": 684.9079132080078, + "msecs": 707.5281143188477, "msg": "Submitted value number 7 is correct (Content %s and Type is %s).", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 51.10597610473633, - "thread": 140535171049280, + "relativeCreated": 32.58204460144043, + "thread": 140208879470400, "threadName": "MainThread" } ], - "msecs": 684.9501132965088, + "msecs": 707.5679302215576, "msg": "Indexlist of log entries in stringrepresentation: Values and number of submitted values is correct. See detailed log for more information.", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 51.148176193237305, - "thread": 140535171049280, + "relativeCreated": 32.62186050415039, + "thread": 140208879470400, "threadName": "MainThread", - "time_consumption": 4.220008850097656e-05 + "time_consumption": 3.981590270996094e-05 } ], - "thread": 140535171049280, + "thread": 140208879470400, "threadName": "MainThread", - "time_consumption": 0.003879070281982422, - "time_finished": "2020-01-28 20:37:38,684", - "time_start": "2020-01-28 20:37:38,681" + "time_consumption": 0.002043008804321289, + "time_finished": "2020-12-21 01:18:51,707", + "time_start": "2020-12-21 01:18:51,705" }, "_PVhZECvVEeqssZLMJF_fcg": { "args": null, - "asctime": "2020-01-28 20:37:38,685", - "created": 1580240258.685139, + "asctime": "2020-12-21 01:18:51,707", + "created": 1608509931.707719, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -1743,18 +1758,18 @@ "message": "_PVhZECvVEeqssZLMJF_fcg", "module": "__init__", "moduleLogger": [], - "msecs": 685.1389408111572, + "msecs": 707.719087600708, "msg": "_PVhZECvVEeqssZLMJF_fcg", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/report/unittest/src/tests/__init__.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 51.33700370788574, + "relativeCreated": 32.77301788330078, "testcaseLogger": [ { "args": [], - "asctime": "2020-01-28 20:37:38,686", - "created": 1580240258.686218, + "asctime": "2020-12-21 01:18:51,708", + "created": 1608509931.708776, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -1767,8 +1782,8 @@ "moduleLogger": [ { "args": [], - "asctime": "2020-01-28 20:37:38,685", - "created": 1580240258.685226, + "asctime": "2020-12-21 01:18:51,707", + "created": 1608509931.707806, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -1778,14 +1793,14 @@ "lineno": 22, "message": "Configuring collecting logger", "module": "test_helpers", - "msecs": 685.2259635925293, + "msecs": 707.8061103820801, "msg": "Configuring collecting logger", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 51.42402648925781, - "thread": 140535171049280, + "relativeCreated": 32.86004066467285, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -1794,8 +1809,8 @@ "DEBUG", "collectingRingHandler" ], - "asctime": "2020-01-28 20:37:38,685", - "created": 1580240258.685319, + "asctime": "2020-12-21 01:18:51,707", + "created": 1608509931.70789, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -1805,14 +1820,14 @@ "lineno": 36, "message": "Passing \"Log entry number 1 with level DEBUG.\" to collectingRingHandler.", "module": "test_helpers", - "msecs": 685.3189468383789, + "msecs": 707.8900337219238, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 51.51700973510742, - "thread": 140535171049280, + "relativeCreated": 32.9439640045166, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -1821,8 +1836,8 @@ "INFO", "collectingRingHandler" ], - "asctime": "2020-01-28 20:37:38,685", - "created": 1580240258.685469, + "asctime": "2020-12-21 01:18:51,708", + "created": 1608509931.708026, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -1832,14 +1847,14 @@ "lineno": 36, "message": "Passing \"Log entry number 2 with level INFO.\" to collectingRingHandler.", "module": "test_helpers", - "msecs": 685.4689121246338, + "msecs": 708.0259323120117, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 51.666975021362305, - "thread": 140535171049280, + "relativeCreated": 33.07986259460449, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -1848,8 +1863,8 @@ "WARNING", "collectingRingHandler" ], - "asctime": "2020-01-28 20:37:38,685", - "created": 1580240258.685599, + "asctime": "2020-12-21 01:18:51,708", + "created": 1608509931.708156, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -1859,14 +1874,14 @@ "lineno": 36, "message": "Passing \"Log entry number 3 with level WARNING.\" to collectingRingHandler.", "module": "test_helpers", - "msecs": 685.5990886688232, + "msecs": 708.1561088562012, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 51.79715156555176, - "thread": 140535171049280, + "relativeCreated": 33.210039138793945, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -1875,8 +1890,8 @@ "ERROR", "collectingRingHandler" ], - "asctime": "2020-01-28 20:37:38,685", - "created": 1580240258.685721, + "asctime": "2020-12-21 01:18:51,708", + "created": 1608509931.708282, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -1886,14 +1901,14 @@ "lineno": 36, "message": "Passing \"Log entry number 4 with level ERROR.\" to collectingRingHandler.", "module": "test_helpers", - "msecs": 685.7209205627441, + "msecs": 708.2819938659668, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 51.918983459472656, - "thread": 140535171049280, + "relativeCreated": 33.33592414855957, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -1902,8 +1917,8 @@ "CRITICAL", "collectingRingHandler" ], - "asctime": "2020-01-28 20:37:38,685", - "created": 1580240258.685843, + "asctime": "2020-12-21 01:18:51,708", + "created": 1608509931.708411, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -1913,14 +1928,14 @@ "lineno": 36, "message": "Passing \"Log entry number 5 with level CRITICAL.\" to collectingRingHandler.", "module": "test_helpers", - "msecs": 685.8429908752441, + "msecs": 708.4109783172607, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 52.041053771972656, - "thread": 140535171049280, + "relativeCreated": 33.464908599853516, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -1929,8 +1944,8 @@ "INFO", "collectingRingHandler" ], - "asctime": "2020-01-28 20:37:38,685", - "created": 1580240258.685968, + "asctime": "2020-12-21 01:18:51,708", + "created": 1608509931.708533, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -1940,14 +1955,14 @@ "lineno": 36, "message": "Passing \"Log entry number 6 with level INFO.\" to collectingRingHandler.", "module": "test_helpers", - "msecs": 685.9679222106934, + "msecs": 708.5330486297607, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 52.165985107421875, - "thread": 140535171049280, + "relativeCreated": 33.586978912353516, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -1956,8 +1971,8 @@ "ERROR", "collectingRingHandler" ], - "asctime": "2020-01-28 20:37:38,686", - "created": 1580240258.686089, + "asctime": "2020-12-21 01:18:51,708", + "created": 1608509931.708656, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -1967,35 +1982,35 @@ "lineno": 36, "message": "Passing \"Log entry number 7 with level ERROR.\" to collectingRingHandler.", "module": "test_helpers", - "msecs": 686.089038848877, + "msecs": 708.6560726165771, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 52.28710174560547, - "thread": 140535171049280, + "relativeCreated": 33.71000289916992, + "thread": 140208879470400, "threadName": "MainThread" } ], - "msecs": 686.2180233001709, + "msecs": 708.7759971618652, "msg": "Running logger test sequence.", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 52.416086196899414, - "thread": 140535171049280, + "relativeCreated": 33.82992744445801, + "thread": 140208879470400, "threadName": "MainThread", - "time_consumption": 0.0001289844512939453 + "time_consumption": 0.00011992454528808594 }, { "args": [ "5", "" ], - "asctime": "2020-01-28 20:37:38,686", - "created": 1580240258.686396, + "asctime": "2020-12-21 01:18:51,708", + "created": 1608509931.708952, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2012,8 +2027,8 @@ "5", "" ], - "asctime": "2020-01-28 20:37:38,686", - "created": 1580240258.686311, + "asctime": "2020-12-21 01:18:51,708", + "created": 1608509931.708864, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2023,14 +2038,14 @@ "lineno": 22, "message": "Result (Length of collected logs): 5 ()", "module": "test", - "msecs": 686.3110065460205, + "msecs": 708.8639736175537, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 52.50906944274902, - "thread": 140535171049280, + "relativeCreated": 33.917903900146484, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -2039,8 +2054,8 @@ "5", "" ], - "asctime": "2020-01-28 20:37:38,686", - "created": 1580240258.686354, + "asctime": "2020-12-21 01:18:51,708", + "created": 1608509931.708908, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2050,35 +2065,35 @@ "lineno": 26, "message": "Expectation (Length of collected logs): result = 5 ()", "module": "test", - "msecs": 686.3539218902588, + "msecs": 708.9080810546875, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 52.551984786987305, - "thread": 140535171049280, + "relativeCreated": 33.96201133728027, + "thread": 140208879470400, "threadName": "MainThread" } ], - "msecs": 686.3958835601807, + "msecs": 708.9519500732422, "msg": "Length of collected logs is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 52.59394645690918, - "thread": 140535171049280, + "relativeCreated": 34.00588035583496, + "thread": 140208879470400, "threadName": "MainThread", - "time_consumption": 4.1961669921875e-05 + "time_consumption": 4.38690185546875e-05 }, { "args": [ "['Log entry number %d with level %s.', 30, 'test_helpers.py', 3]", "" ], - "asctime": "2020-01-28 20:37:38,686", - "created": 1580240258.686589, + "asctime": "2020-12-21 01:18:51,709", + "created": 1608509931.70915, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2095,8 +2110,8 @@ "[ 'Log entry number %d with level %s.', 30, 'test_helpers.py', 3 ]", "" ], - "asctime": "2020-01-28 20:37:38,686", - "created": 1580240258.68648, + "asctime": "2020-12-21 01:18:51,709", + "created": 1608509931.70904, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2106,14 +2121,14 @@ "lineno": 22, "message": "Result (Logged information): [ 'Log entry number %d with level %s.', 30, 'test_helpers.py', 3 ] ()", "module": "test", - "msecs": 686.4800453186035, + "msecs": 709.0399265289307, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 52.67810821533203, - "thread": 140535171049280, + "relativeCreated": 34.09385681152344, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -2122,8 +2137,8 @@ "[ 'Log entry number %d with level %s.', 30, 'test_helpers.py', 3 ]", "" ], - "asctime": "2020-01-28 20:37:38,686", - "created": 1580240258.686527, + "asctime": "2020-12-21 01:18:51,709", + "created": 1608509931.70909, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2133,35 +2148,35 @@ "lineno": 26, "message": "Expectation (Logged information): result = [ 'Log entry number %d with level %s.', 30, 'test_helpers.py', 3 ] ()", "module": "test", - "msecs": 686.5270137786865, + "msecs": 709.089994430542, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 52.72507667541504, - "thread": 140535171049280, + "relativeCreated": 34.143924713134766, + "thread": 140208879470400, "threadName": "MainThread" } ], - "msecs": 686.5890026092529, + "msecs": 709.1500759124756, "msg": "Logged information is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 52.787065505981445, - "thread": 140535171049280, + "relativeCreated": 34.20400619506836, + "thread": 140208879470400, "threadName": "MainThread", - "time_consumption": 6.198883056640625e-05 + "time_consumption": 6.008148193359375e-05 }, { "args": [ "['Log entry number %d with level %s.', 40, 'test_helpers.py', 4]", "" ], - "asctime": "2020-01-28 20:37:38,686", - "created": 1580240258.686776, + "asctime": "2020-12-21 01:18:51,709", + "created": 1608509931.70934, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2178,8 +2193,8 @@ "[ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 4 ]", "" ], - "asctime": "2020-01-28 20:37:38,686", - "created": 1580240258.686666, + "asctime": "2020-12-21 01:18:51,709", + "created": 1608509931.709228, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2189,14 +2204,14 @@ "lineno": 22, "message": "Result (Logged information): [ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 4 ] ()", "module": "test", - "msecs": 686.6660118103027, + "msecs": 709.2280387878418, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 52.86407470703125, - "thread": 140535171049280, + "relativeCreated": 34.28196907043457, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -2205,8 +2220,8 @@ "[ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 4 ]", "" ], - "asctime": "2020-01-28 20:37:38,686", - "created": 1580240258.686716, + "asctime": "2020-12-21 01:18:51,709", + "created": 1608509931.709278, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2216,35 +2231,35 @@ "lineno": 26, "message": "Expectation (Logged information): result = [ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 4 ] ()", "module": "test", - "msecs": 686.7160797119141, + "msecs": 709.2781066894531, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 52.91414260864258, - "thread": 140535171049280, + "relativeCreated": 34.3320369720459, + "thread": 140208879470400, "threadName": "MainThread" } ], - "msecs": 686.7759227752686, + "msecs": 709.3400955200195, "msg": "Logged information is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 52.97398567199707, - "thread": 140535171049280, + "relativeCreated": 34.394025802612305, + "thread": 140208879470400, "threadName": "MainThread", - "time_consumption": 5.984306335449219e-05 + "time_consumption": 6.198883056640625e-05 }, { "args": [ "['Log entry number %d with level %s.', 50, 'test_helpers.py', 5]", "" ], - "asctime": "2020-01-28 20:37:38,686", - "created": 1580240258.686967, + "asctime": "2020-12-21 01:18:51,709", + "created": 1608509931.709522, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2261,8 +2276,8 @@ "[ 'Log entry number %d with level %s.', 50, 'test_helpers.py', 5 ]", "" ], - "asctime": "2020-01-28 20:37:38,686", - "created": 1580240258.686858, + "asctime": "2020-12-21 01:18:51,709", + "created": 1608509931.709418, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2272,14 +2287,14 @@ "lineno": 22, "message": "Result (Logged information): [ 'Log entry number %d with level %s.', 50, 'test_helpers.py', 5 ] ()", "module": "test", - "msecs": 686.8579387664795, + "msecs": 709.4180583953857, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 53.05600166320801, - "thread": 140535171049280, + "relativeCreated": 34.471988677978516, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -2288,8 +2303,8 @@ "[ 'Log entry number %d with level %s.', 50, 'test_helpers.py', 5 ]", "" ], - "asctime": "2020-01-28 20:37:38,686", - "created": 1580240258.68691, + "asctime": "2020-12-21 01:18:51,709", + "created": 1608509931.709464, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2299,35 +2314,35 @@ "lineno": 26, "message": "Expectation (Logged information): result = [ 'Log entry number %d with level %s.', 50, 'test_helpers.py', 5 ] ()", "module": "test", - "msecs": 686.9099140167236, + "msecs": 709.4640731811523, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 53.10797691345215, - "thread": 140535171049280, + "relativeCreated": 34.51800346374512, + "thread": 140208879470400, "threadName": "MainThread" } ], - "msecs": 686.9668960571289, + "msecs": 709.522008895874, "msg": "Logged information is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 53.16495895385742, - "thread": 140535171049280, + "relativeCreated": 34.5759391784668, + "thread": 140208879470400, "threadName": "MainThread", - "time_consumption": 5.698204040527344e-05 + "time_consumption": 5.793571472167969e-05 }, { "args": [ "['Log entry number %d with level %s.', 20, 'test_helpers.py', 6]", "" ], - "asctime": "2020-01-28 20:37:38,687", - "created": 1580240258.687143, + "asctime": "2020-12-21 01:18:51,709", + "created": 1608509931.709705, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2344,8 +2359,8 @@ "[ 'Log entry number %d with level %s.', 20, 'test_helpers.py', 6 ]", "" ], - "asctime": "2020-01-28 20:37:38,687", - "created": 1580240258.687042, + "asctime": "2020-12-21 01:18:51,709", + "created": 1608509931.709599, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2355,14 +2370,14 @@ "lineno": 22, "message": "Result (Logged information): [ 'Log entry number %d with level %s.', 20, 'test_helpers.py', 6 ] ()", "module": "test", - "msecs": 687.0419979095459, + "msecs": 709.5990180969238, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 53.240060806274414, - "thread": 140535171049280, + "relativeCreated": 34.6529483795166, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -2371,8 +2386,8 @@ "[ 'Log entry number %d with level %s.', 20, 'test_helpers.py', 6 ]", "" ], - "asctime": "2020-01-28 20:37:38,687", - "created": 1580240258.687087, + "asctime": "2020-12-21 01:18:51,709", + "created": 1608509931.709645, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2382,35 +2397,35 @@ "lineno": 26, "message": "Expectation (Logged information): result = [ 'Log entry number %d with level %s.', 20, 'test_helpers.py', 6 ] ()", "module": "test", - "msecs": 687.0870590209961, + "msecs": 709.6450328826904, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 53.28512191772461, - "thread": 140535171049280, + "relativeCreated": 34.6989631652832, + "thread": 140208879470400, "threadName": "MainThread" } ], - "msecs": 687.143087387085, + "msecs": 709.705114364624, "msg": "Logged information is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 53.34115028381348, - "thread": 140535171049280, + "relativeCreated": 34.7590446472168, + "thread": 140208879470400, "threadName": "MainThread", - "time_consumption": 5.602836608886719e-05 + "time_consumption": 6.008148193359375e-05 }, { "args": [ "['Log entry number %d with level %s.', 40, 'test_helpers.py', 7]", "" ], - "asctime": "2020-01-28 20:37:38,687", - "created": 1580240258.687316, + "asctime": "2020-12-21 01:18:51,709", + "created": 1608509931.709887, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2427,8 +2442,8 @@ "[ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 7 ]", "" ], - "asctime": "2020-01-28 20:37:38,687", - "created": 1580240258.687217, + "asctime": "2020-12-21 01:18:51,709", + "created": 1608509931.709783, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2438,14 +2453,14 @@ "lineno": 22, "message": "Result (Logged information): [ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 7 ] ()", "module": "test", - "msecs": 687.2169971466064, + "msecs": 709.7830772399902, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 53.41506004333496, - "thread": 140535171049280, + "relativeCreated": 34.83700752258301, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -2454,8 +2469,8 @@ "[ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 7 ]", "" ], - "asctime": "2020-01-28 20:37:38,687", - "created": 1580240258.687262, + "asctime": "2020-12-21 01:18:51,709", + "created": 1608509931.709829, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2465,39 +2480,39 @@ "lineno": 26, "message": "Expectation (Logged information): result = [ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 7 ] ()", "module": "test", - "msecs": 687.2620582580566, + "msecs": 709.8290920257568, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 53.460121154785156, - "thread": 140535171049280, + "relativeCreated": 34.88302230834961, + "thread": 140208879470400, "threadName": "MainThread" } ], - "msecs": 687.3159408569336, + "msecs": 709.8870277404785, "msg": "Logged information is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 53.51400375366211, - "thread": 140535171049280, + "relativeCreated": 34.94095802307129, + "thread": 140208879470400, "threadName": "MainThread", - "time_consumption": 5.3882598876953125e-05 + "time_consumption": 5.793571472167969e-05 } ], - "thread": 140535171049280, + "thread": 140208879470400, "threadName": "MainThread", - "time_consumption": 0.002177000045776367, - "time_finished": "2020-01-28 20:37:38,687", - "time_start": "2020-01-28 20:37:38,685" + "time_consumption": 0.002167940139770508, + "time_finished": "2020-12-21 01:18:51,709", + "time_start": "2020-12-21 01:18:51,707" }, "_QBmb8CvVEeqssZLMJF_fcg": { "args": null, - "asctime": "2020-01-28 20:37:38,687", - "created": 1580240258.687472, + "asctime": "2020-12-21 01:18:51,710", + "created": 1608509931.710033, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -2508,18 +2523,18 @@ "message": "_QBmb8CvVEeqssZLMJF_fcg", "module": "__init__", "moduleLogger": [], - "msecs": 687.4721050262451, + "msecs": 710.0329399108887, "msg": "_QBmb8CvVEeqssZLMJF_fcg", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/report/unittest/src/tests/__init__.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 53.67016792297363, + "relativeCreated": 35.086870193481445, "testcaseLogger": [ { "args": [], - "asctime": "2020-01-28 20:37:38,688", - "created": 1580240258.688766, + "asctime": "2020-12-21 01:18:51,711", + "created": 1608509931.711263, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -2532,8 +2547,8 @@ "moduleLogger": [ { "args": [], - "asctime": "2020-01-28 20:37:38,687", - "created": 1580240258.687553, + "asctime": "2020-12-21 01:18:51,710", + "created": 1608509931.71011, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -2543,14 +2558,14 @@ "lineno": 22, "message": "Configuring collecting logger", "module": "test_helpers", - "msecs": 687.5529289245605, + "msecs": 710.1099491119385, "msg": "Configuring collecting logger", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 53.75099182128906, - "thread": 140535171049280, + "relativeCreated": 35.16387939453125, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -2559,8 +2574,8 @@ "DEBUG", "collectingRingHandler" ], - "asctime": "2020-01-28 20:37:38,687", - "created": 1580240258.68763, + "asctime": "2020-12-21 01:18:51,710", + "created": 1608509931.710233, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -2570,14 +2585,14 @@ "lineno": 36, "message": "Passing \"Log entry number 1 with level DEBUG.\" to collectingRingHandler.", "module": "test_helpers", - "msecs": 687.6299381256104, + "msecs": 710.2329730987549, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 53.82800102233887, - "thread": 140535171049280, + "relativeCreated": 35.286903381347656, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -2586,8 +2601,8 @@ "INFO", "collectingRingHandler" ], - "asctime": "2020-01-28 20:37:38,687", - "created": 1580240258.687845, + "asctime": "2020-12-21 01:18:51,710", + "created": 1608509931.710397, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -2597,14 +2612,14 @@ "lineno": 36, "message": "Passing \"Log entry number 2 with level INFO.\" to collectingRingHandler.", "module": "test_helpers", - "msecs": 687.84499168396, + "msecs": 710.3970050811768, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 54.04305458068848, - "thread": 140535171049280, + "relativeCreated": 35.45093536376953, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -2613,8 +2628,8 @@ "WARNING", "collectingRingHandler" ], - "asctime": "2020-01-28 20:37:38,688", - "created": 1580240258.688027, + "asctime": "2020-12-21 01:18:51,710", + "created": 1608509931.710554, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -2624,14 +2639,14 @@ "lineno": 36, "message": "Passing \"Log entry number 3 with level WARNING.\" to collectingRingHandler.", "module": "test_helpers", - "msecs": 688.0269050598145, + "msecs": 710.5538845062256, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 54.22496795654297, - "thread": 140535171049280, + "relativeCreated": 35.60781478881836, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -2640,8 +2655,8 @@ "ERROR", "collectingRingHandler" ], - "asctime": "2020-01-28 20:37:38,688", - "created": 1580240258.688184, + "asctime": "2020-12-21 01:18:51,710", + "created": 1608509931.710695, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -2651,14 +2666,14 @@ "lineno": 36, "message": "Passing \"Log entry number 4 with level ERROR.\" to collectingRingHandler.", "module": "test_helpers", - "msecs": 688.1840229034424, + "msecs": 710.6950283050537, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 54.3820858001709, - "thread": 140535171049280, + "relativeCreated": 35.748958587646484, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -2667,8 +2682,8 @@ "CRITICAL", "collectingRingHandler" ], - "asctime": "2020-01-28 20:37:38,688", - "created": 1580240258.688327, + "asctime": "2020-12-21 01:18:51,710", + "created": 1608509931.71084, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -2678,14 +2693,14 @@ "lineno": 36, "message": "Passing \"Log entry number 5 with level CRITICAL.\" to collectingRingHandler.", "module": "test_helpers", - "msecs": 688.3270740509033, + "msecs": 710.8399868011475, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 54.525136947631836, - "thread": 140535171049280, + "relativeCreated": 35.893917083740234, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -2694,8 +2709,8 @@ "INFO", "collectingRingHandler" ], - "asctime": "2020-01-28 20:37:38,688", - "created": 1580240258.688475, + "asctime": "2020-12-21 01:18:51,710", + "created": 1608509931.71098, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -2705,14 +2720,14 @@ "lineno": 36, "message": "Passing \"Log entry number 6 with level INFO.\" to collectingRingHandler.", "module": "test_helpers", - "msecs": 688.4748935699463, + "msecs": 710.9799385070801, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 54.672956466674805, - "thread": 140535171049280, + "relativeCreated": 36.03386878967285, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -2721,8 +2736,8 @@ "ERROR", "collectingRingHandler" ], - "asctime": "2020-01-28 20:37:38,688", - "created": 1580240258.688617, + "asctime": "2020-12-21 01:18:51,711", + "created": 1608509931.711126, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -2732,32 +2747,32 @@ "lineno": 36, "message": "Passing \"Log entry number 7 with level ERROR.\" to collectingRingHandler.", "module": "test_helpers", - "msecs": 688.6169910430908, + "msecs": 711.1260890960693, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 54.815053939819336, - "thread": 140535171049280, + "relativeCreated": 36.18001937866211, + "thread": 140208879470400, "threadName": "MainThread" } ], - "msecs": 688.7660026550293, + "msecs": 711.2629413604736, "msg": "Running logger test sequence.", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 54.96406555175781, - "thread": 140535171049280, + "relativeCreated": 36.316871643066406, + "thread": 140208879470400, "threadName": "MainThread", - "time_consumption": 0.00014901161193847656 + "time_consumption": 0.00013685226440429688 }, { "args": [], - "asctime": "2020-01-28 20:37:38,689", - "created": 1580240258.689649, + "asctime": "2020-12-21 01:18:51,712", + "created": 1608509931.712109, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2774,8 +2789,8 @@ "[ 51, 139, 228, 316, 401 ]", "" ], - "asctime": "2020-01-28 20:37:38,688", - "created": 1580240258.688908, + "asctime": "2020-12-21 01:18:51,711", + "created": 1608509931.711382, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2785,14 +2800,14 @@ "lineno": 22, "message": "Result (Indexlist of log entries in stringrepresentation): [ 51, 139, 228, 316, 401 ] ()", "module": "test", - "msecs": 688.9081001281738, + "msecs": 711.3819122314453, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 55.106163024902344, - "thread": 140535171049280, + "relativeCreated": 36.435842514038086, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -2801,8 +2816,8 @@ "[ 51, 139, 228, 316, 401 ]", "" ], - "asctime": "2020-01-28 20:37:38,688", - "created": 1580240258.688959, + "asctime": "2020-12-21 01:18:51,711", + "created": 1608509931.711434, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2812,14 +2827,14 @@ "lineno": 26, "message": "Expectation (Indexlist of log entries in stringrepresentation): result = [ 51, 139, 228, 316, 401 ] ()", "module": "test", - "msecs": 688.9588832855225, + "msecs": 711.4338874816895, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 55.15694618225098, - "thread": 140535171049280, + "relativeCreated": 36.48781776428223, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -2828,8 +2843,8 @@ "51", "" ], - "asctime": "2020-01-28 20:37:38,689", - "created": 1580240258.68901, + "asctime": "2020-12-21 01:18:51,711", + "created": 1608509931.711481, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2839,14 +2854,14 @@ "lineno": 22, "message": "Result (Submitted value number 1): 51 ()", "module": "test", - "msecs": 689.0099048614502, + "msecs": 711.4810943603516, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 55.20796775817871, - "thread": 140535171049280, + "relativeCreated": 36.535024642944336, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -2855,8 +2870,8 @@ "51", "" ], - "asctime": "2020-01-28 20:37:38,689", - "created": 1580240258.689053, + "asctime": "2020-12-21 01:18:51,711", + "created": 1608509931.711525, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2866,14 +2881,14 @@ "lineno": 26, "message": "Expectation (Submitted value number 1): result = 51 ()", "module": "test", - "msecs": 689.0530586242676, + "msecs": 711.5249633789062, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 55.251121520996094, - "thread": 140535171049280, + "relativeCreated": 36.57889366149902, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -2881,8 +2896,8 @@ "51", "" ], - "asctime": "2020-01-28 20:37:38,689", - "created": 1580240258.689096, + "asctime": "2020-12-21 01:18:51,711", + "created": 1608509931.711568, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2892,14 +2907,14 @@ "lineno": 142, "message": "Submitted value number 1 is correct (Content 51 and Type is ).", "module": "test", - "msecs": 689.0959739685059, + "msecs": 711.5681171417236, "msg": "Submitted value number 1 is correct (Content %s and Type is %s).", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 55.294036865234375, - "thread": 140535171049280, + "relativeCreated": 36.622047424316406, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -2908,8 +2923,8 @@ "139", "" ], - "asctime": "2020-01-28 20:37:38,689", - "created": 1580240258.68914, + "asctime": "2020-12-21 01:18:51,711", + "created": 1608509931.711611, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2919,14 +2934,14 @@ "lineno": 22, "message": "Result (Submitted value number 2): 139 ()", "module": "test", - "msecs": 689.1400814056396, + "msecs": 711.6110324859619, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 55.338144302368164, - "thread": 140535171049280, + "relativeCreated": 36.66496276855469, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -2935,8 +2950,8 @@ "139", "" ], - "asctime": "2020-01-28 20:37:38,689", - "created": 1580240258.689185, + "asctime": "2020-12-21 01:18:51,711", + "created": 1608509931.711652, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2946,14 +2961,14 @@ "lineno": 26, "message": "Expectation (Submitted value number 2): result = 139 ()", "module": "test", - "msecs": 689.1849040985107, + "msecs": 711.6520404815674, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 55.38296699523926, - "thread": 140535171049280, + "relativeCreated": 36.705970764160156, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -2961,8 +2976,8 @@ "139", "" ], - "asctime": "2020-01-28 20:37:38,689", - "created": 1580240258.689228, + "asctime": "2020-12-21 01:18:51,711", + "created": 1608509931.711693, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2972,14 +2987,14 @@ "lineno": 142, "message": "Submitted value number 2 is correct (Content 139 and Type is ).", "module": "test", - "msecs": 689.2280578613281, + "msecs": 711.6930484771729, "msg": "Submitted value number 2 is correct (Content %s and Type is %s).", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 55.42612075805664, - "thread": 140535171049280, + "relativeCreated": 36.746978759765625, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -2988,8 +3003,8 @@ "228", "" ], - "asctime": "2020-01-28 20:37:38,689", - "created": 1580240258.689272, + "asctime": "2020-12-21 01:18:51,711", + "created": 1608509931.711735, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2999,14 +3014,14 @@ "lineno": 22, "message": "Result (Submitted value number 3): 228 ()", "module": "test", - "msecs": 689.2719268798828, + "msecs": 711.7350101470947, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 55.46998977661133, - "thread": 140535171049280, + "relativeCreated": 36.7889404296875, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -3015,8 +3030,8 @@ "228", "" ], - "asctime": "2020-01-28 20:37:38,689", - "created": 1580240258.689314, + "asctime": "2020-12-21 01:18:51,711", + "created": 1608509931.711779, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3026,14 +3041,14 @@ "lineno": 26, "message": "Expectation (Submitted value number 3): result = 228 ()", "module": "test", - "msecs": 689.3138885498047, + "msecs": 711.7791175842285, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 55.5119514465332, - "thread": 140535171049280, + "relativeCreated": 36.83304786682129, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -3041,8 +3056,8 @@ "228", "" ], - "asctime": "2020-01-28 20:37:38,689", - "created": 1580240258.689356, + "asctime": "2020-12-21 01:18:51,711", + "created": 1608509931.71182, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3052,14 +3067,14 @@ "lineno": 142, "message": "Submitted value number 3 is correct (Content 228 and Type is ).", "module": "test", - "msecs": 689.3560886383057, + "msecs": 711.8198871612549, "msg": "Submitted value number 3 is correct (Content %s and Type is %s).", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 55.55415153503418, - "thread": 140535171049280, + "relativeCreated": 36.873817443847656, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -3068,8 +3083,8 @@ "316", "" ], - "asctime": "2020-01-28 20:37:38,689", - "created": 1580240258.689401, + "asctime": "2020-12-21 01:18:51,711", + "created": 1608509931.711862, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3079,14 +3094,14 @@ "lineno": 22, "message": "Result (Submitted value number 4): 316 ()", "module": "test", - "msecs": 689.4009113311768, + "msecs": 711.8620872497559, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 55.59897422790527, - "thread": 140535171049280, + "relativeCreated": 36.91601753234863, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -3095,8 +3110,8 @@ "316", "" ], - "asctime": "2020-01-28 20:37:38,689", - "created": 1580240258.68944, + "asctime": "2020-12-21 01:18:51,711", + "created": 1608509931.711902, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3106,14 +3121,14 @@ "lineno": 26, "message": "Expectation (Submitted value number 4): result = 316 ()", "module": "test", - "msecs": 689.4400119781494, + "msecs": 711.9019031524658, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 55.63807487487793, - "thread": 140535171049280, + "relativeCreated": 36.955833435058594, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -3121,8 +3136,8 @@ "316", "" ], - "asctime": "2020-01-28 20:37:38,689", - "created": 1580240258.689481, + "asctime": "2020-12-21 01:18:51,711", + "created": 1608509931.711945, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3132,14 +3147,14 @@ "lineno": 142, "message": "Submitted value number 4 is correct (Content 316 and Type is ).", "module": "test", - "msecs": 689.4810199737549, + "msecs": 711.9450569152832, "msg": "Submitted value number 4 is correct (Content %s and Type is %s).", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 55.6790828704834, - "thread": 140535171049280, + "relativeCreated": 36.99898719787598, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -3148,8 +3163,8 @@ "401", "" ], - "asctime": "2020-01-28 20:37:38,689", - "created": 1580240258.689522, + "asctime": "2020-12-21 01:18:51,711", + "created": 1608509931.711986, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3159,14 +3174,14 @@ "lineno": 22, "message": "Result (Submitted value number 5): 401 ()", "module": "test", - "msecs": 689.5220279693604, + "msecs": 711.9860649108887, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 55.72009086608887, - "thread": 140535171049280, + "relativeCreated": 37.039995193481445, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -3175,8 +3190,8 @@ "401", "" ], - "asctime": "2020-01-28 20:37:38,689", - "created": 1580240258.689568, + "asctime": "2020-12-21 01:18:51,712", + "created": 1608509931.712026, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3186,14 +3201,14 @@ "lineno": 26, "message": "Expectation (Submitted value number 5): result = 401 ()", "module": "test", - "msecs": 689.568042755127, + "msecs": 712.0258808135986, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 55.76610565185547, - "thread": 140535171049280, + "relativeCreated": 37.079811096191406, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -3201,8 +3216,8 @@ "401", "" ], - "asctime": "2020-01-28 20:37:38,689", - "created": 1580240258.689608, + "asctime": "2020-12-21 01:18:51,712", + "created": 1608509931.712066, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3212,39 +3227,39 @@ "lineno": 142, "message": "Submitted value number 5 is correct (Content 401 and Type is ).", "module": "test", - "msecs": 689.608097076416, + "msecs": 712.0659351348877, "msg": "Submitted value number 5 is correct (Content %s and Type is %s).", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 55.80615997314453, - "thread": 140535171049280, + "relativeCreated": 37.11986541748047, + "thread": 140208879470400, "threadName": "MainThread" } ], - "msecs": 689.6491050720215, + "msecs": 712.1090888977051, "msg": "Indexlist of log entries in stringrepresentation: Values and number of submitted values is correct. See detailed log for more information.", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 55.84716796875, - "thread": 140535171049280, + "relativeCreated": 37.16301918029785, + "thread": 140208879470400, "threadName": "MainThread", - "time_consumption": 4.100799560546875e-05 + "time_consumption": 4.315376281738281e-05 } ], - "thread": 140535171049280, + "thread": 140208879470400, "threadName": "MainThread", - "time_consumption": 0.002177000045776367, - "time_finished": "2020-01-28 20:37:38,689", - "time_start": "2020-01-28 20:37:38,687" + "time_consumption": 0.0020761489868164062, + "time_finished": "2020-12-21 01:18:51,712", + "time_start": "2020-12-21 01:18:51,710" }, "_XzMFcHYZEem_kd-7nxt1sg": { "args": null, - "asctime": "2020-01-28 20:37:38,676", - "created": 1580240258.676068, + "asctime": "2020-12-21 01:18:51,702", + "created": 1608509931.702961, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -3255,18 +3270,18 @@ "message": "_XzMFcHYZEem_kd-7nxt1sg", "module": "__init__", "moduleLogger": [], - "msecs": 676.0680675506592, + "msecs": 702.9609680175781, "msg": "_XzMFcHYZEem_kd-7nxt1sg", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/report/unittest/src/tests/__init__.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 42.266130447387695, + "relativeCreated": 28.0148983001709, "testcaseLogger": [ { "args": [], - "asctime": "2020-01-28 20:37:38,677", - "created": 1580240258.67715, + "asctime": "2020-12-21 01:18:51,703", + "created": 1608509931.703886, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -3279,8 +3294,8 @@ "moduleLogger": [ { "args": [], - "asctime": "2020-01-28 20:37:38,676", - "created": 1580240258.676333, + "asctime": "2020-12-21 01:18:51,703", + "created": 1608509931.70316, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -3290,14 +3305,14 @@ "lineno": 22, "message": "Configuring collecting logger", "module": "test_helpers", - "msecs": 676.332950592041, + "msecs": 703.1600475311279, "msg": "Configuring collecting logger", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 42.53101348876953, - "thread": 140535171049280, + "relativeCreated": 28.213977813720703, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -3306,8 +3321,8 @@ "DEBUG", "collectingHandler" ], - "asctime": "2020-01-28 20:37:38,676", - "created": 1580240258.676469, + "asctime": "2020-12-21 01:18:51,703", + "created": 1608509931.703255, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -3317,14 +3332,14 @@ "lineno": 36, "message": "Passing \"Log entry number 1 with level DEBUG.\" to collectingHandler.", "module": "test_helpers", - "msecs": 676.469087600708, + "msecs": 703.2549381256104, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 42.66715049743652, - "thread": 140535171049280, + "relativeCreated": 28.308868408203125, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -3333,8 +3348,8 @@ "INFO", "collectingHandler" ], - "asctime": "2020-01-28 20:37:38,676", - "created": 1580240258.676603, + "asctime": "2020-12-21 01:18:51,703", + "created": 1608509931.70336, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -3344,14 +3359,14 @@ "lineno": 36, "message": "Passing \"Log entry number 2 with level INFO.\" to collectingHandler.", "module": "test_helpers", - "msecs": 676.6030788421631, + "msecs": 703.3600807189941, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 42.8011417388916, - "thread": 140535171049280, + "relativeCreated": 28.414011001586914, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -3360,8 +3375,8 @@ "WARNING", "collectingHandler" ], - "asctime": "2020-01-28 20:37:38,676", - "created": 1580240258.676704, + "asctime": "2020-12-21 01:18:51,703", + "created": 1608509931.703457, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -3371,14 +3386,14 @@ "lineno": 36, "message": "Passing \"Log entry number 3 with level WARNING.\" to collectingHandler.", "module": "test_helpers", - "msecs": 676.703929901123, + "msecs": 703.4571170806885, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 42.90199279785156, - "thread": 140535171049280, + "relativeCreated": 28.51104736328125, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -3387,8 +3402,8 @@ "ERROR", "collectingHandler" ], - "asctime": "2020-01-28 20:37:38,676", - "created": 1580240258.676799, + "asctime": "2020-12-21 01:18:51,703", + "created": 1608509931.703545, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -3398,14 +3413,14 @@ "lineno": 36, "message": "Passing \"Log entry number 4 with level ERROR.\" to collectingHandler.", "module": "test_helpers", - "msecs": 676.7990589141846, + "msecs": 703.545093536377, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 42.997121810913086, - "thread": 140535171049280, + "relativeCreated": 28.599023818969727, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -3414,8 +3429,8 @@ "CRITICAL", "collectingHandler" ], - "asctime": "2020-01-28 20:37:38,676", - "created": 1580240258.676886, + "asctime": "2020-12-21 01:18:51,703", + "created": 1608509931.703633, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -3425,14 +3440,14 @@ "lineno": 36, "message": "Passing \"Log entry number 5 with level CRITICAL.\" to collectingHandler.", "module": "test_helpers", - "msecs": 676.8860816955566, + "msecs": 703.6330699920654, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 43.084144592285156, - "thread": 140535171049280, + "relativeCreated": 28.687000274658203, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -3441,8 +3456,8 @@ "INFO", "collectingHandler" ], - "asctime": "2020-01-28 20:37:38,676", - "created": 1580240258.676977, + "asctime": "2020-12-21 01:18:51,703", + "created": 1608509931.703718, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -3452,14 +3467,14 @@ "lineno": 36, "message": "Passing \"Log entry number 6 with level INFO.\" to collectingHandler.", "module": "test_helpers", - "msecs": 676.9769191741943, + "msecs": 703.7179470062256, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 43.17498207092285, - "thread": 140535171049280, + "relativeCreated": 28.77187728881836, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -3468,8 +3483,8 @@ "ERROR", "collectingHandler" ], - "asctime": "2020-01-28 20:37:38,677", - "created": 1580240258.677063, + "asctime": "2020-12-21 01:18:51,703", + "created": 1608509931.703802, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -3479,35 +3494,35 @@ "lineno": 36, "message": "Passing \"Log entry number 7 with level ERROR.\" to collectingHandler.", "module": "test_helpers", - "msecs": 677.06298828125, + "msecs": 703.8021087646484, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 43.261051177978516, - "thread": 140535171049280, + "relativeCreated": 28.85603904724121, + "thread": 140208879470400, "threadName": "MainThread" } ], - "msecs": 677.1500110626221, + "msecs": 703.8860321044922, "msg": "Running logger test sequence.", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 43.348073959350586, - "thread": 140535171049280, + "relativeCreated": 28.93996238708496, + "thread": 140208879470400, "threadName": "MainThread", - "time_consumption": 8.702278137207031e-05 + "time_consumption": 8.392333984375e-05 }, { "args": [ "7", "" ], - "asctime": "2020-01-28 20:37:38,677", - "created": 1580240258.677337, + "asctime": "2020-12-21 01:18:51,704", + "created": 1608509931.704077, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3524,8 +3539,8 @@ "7", "" ], - "asctime": "2020-01-28 20:37:38,677", - "created": 1580240258.67725, + "asctime": "2020-12-21 01:18:51,703", + "created": 1608509931.703981, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3535,14 +3550,14 @@ "lineno": 22, "message": "Result (Length of collected logs): 7 ()", "module": "test", - "msecs": 677.2499084472656, + "msecs": 703.9809226989746, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 43.44797134399414, - "thread": 140535171049280, + "relativeCreated": 29.034852981567383, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -3551,8 +3566,8 @@ "7", "" ], - "asctime": "2020-01-28 20:37:38,677", - "created": 1580240258.677294, + "asctime": "2020-12-21 01:18:51,704", + "created": 1608509931.704031, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3562,35 +3577,35 @@ "lineno": 26, "message": "Expectation (Length of collected logs): result = 7 ()", "module": "test", - "msecs": 677.2940158843994, + "msecs": 704.0309906005859, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 43.49207878112793, - "thread": 140535171049280, + "relativeCreated": 29.08492088317871, + "thread": 140208879470400, "threadName": "MainThread" } ], - "msecs": 677.3369312286377, + "msecs": 704.0770053863525, "msg": "Length of collected logs is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 43.53499412536621, - "thread": 140535171049280, + "relativeCreated": 29.130935668945312, + "thread": 140208879470400, "threadName": "MainThread", - "time_consumption": 4.291534423828125e-05 + "time_consumption": 4.601478576660156e-05 }, { "args": [ "['Log entry number %d with level %s.', 10, 'test_helpers.py', 1]", "" ], - "asctime": "2020-01-28 20:37:38,677", - "created": 1580240258.677547, + "asctime": "2020-12-21 01:18:51,704", + "created": 1608509931.704278, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3607,8 +3622,8 @@ "[ 'Log entry number %d with level %s.', 10, 'test_helpers.py', 1 ]", "" ], - "asctime": "2020-01-28 20:37:38,677", - "created": 1580240258.677422, + "asctime": "2020-12-21 01:18:51,704", + "created": 1608509931.704163, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3618,14 +3633,14 @@ "lineno": 22, "message": "Result (Logged information): [ 'Log entry number %d with level %s.', 10, 'test_helpers.py', 1 ] ()", "module": "test", - "msecs": 677.422046661377, + "msecs": 704.1630744934082, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 43.62010955810547, - "thread": 140535171049280, + "relativeCreated": 29.217004776000977, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -3634,8 +3649,8 @@ "[ 'Log entry number %d with level %s.', 10, 'test_helpers.py', 1 ]", "" ], - "asctime": "2020-01-28 20:37:38,677", - "created": 1580240258.677468, + "asctime": "2020-12-21 01:18:51,704", + "created": 1608509931.704212, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3645,35 +3660,35 @@ "lineno": 26, "message": "Expectation (Logged information): result = [ 'Log entry number %d with level %s.', 10, 'test_helpers.py', 1 ] ()", "module": "test", - "msecs": 677.4680614471436, + "msecs": 704.211950302124, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 43.66612434387207, - "thread": 140535171049280, + "relativeCreated": 29.265880584716797, + "thread": 140208879470400, "threadName": "MainThread" } ], - "msecs": 677.5469779968262, + "msecs": 704.2779922485352, "msg": "Logged information is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 43.74504089355469, - "thread": 140535171049280, + "relativeCreated": 29.33192253112793, + "thread": 140208879470400, "threadName": "MainThread", - "time_consumption": 7.891654968261719e-05 + "time_consumption": 6.604194641113281e-05 }, { "args": [ "['Log entry number %d with level %s.', 20, 'test_helpers.py', 2]", "" ], - "asctime": "2020-01-28 20:37:38,677", - "created": 1580240258.677747, + "asctime": "2020-12-21 01:18:51,704", + "created": 1608509931.704465, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3690,8 +3705,8 @@ "[ 'Log entry number %d with level %s.', 20, 'test_helpers.py', 2 ]", "" ], - "asctime": "2020-01-28 20:37:38,677", - "created": 1580240258.677639, + "asctime": "2020-12-21 01:18:51,704", + "created": 1608509931.704356, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3701,14 +3716,14 @@ "lineno": 22, "message": "Result (Logged information): [ 'Log entry number %d with level %s.', 20, 'test_helpers.py', 2 ] ()", "module": "test", - "msecs": 677.6390075683594, + "msecs": 704.3559551239014, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 43.83707046508789, - "thread": 140535171049280, + "relativeCreated": 29.40988540649414, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -3717,8 +3732,8 @@ "[ 'Log entry number %d with level %s.', 20, 'test_helpers.py', 2 ]", "" ], - "asctime": "2020-01-28 20:37:38,677", - "created": 1580240258.677689, + "asctime": "2020-12-21 01:18:51,704", + "created": 1608509931.704404, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3728,35 +3743,35 @@ "lineno": 26, "message": "Expectation (Logged information): result = [ 'Log entry number %d with level %s.', 20, 'test_helpers.py', 2 ] ()", "module": "test", - "msecs": 677.6890754699707, + "msecs": 704.4041156768799, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 43.88713836669922, - "thread": 140535171049280, + "relativeCreated": 29.458045959472656, + "thread": 140208879470400, "threadName": "MainThread" } ], - "msecs": 677.7470111846924, + "msecs": 704.4649124145508, "msg": "Logged information is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 43.9450740814209, - "thread": 140535171049280, + "relativeCreated": 29.518842697143555, + "thread": 140208879470400, "threadName": "MainThread", - "time_consumption": 5.793571472167969e-05 + "time_consumption": 6.079673767089844e-05 }, { "args": [ "['Log entry number %d with level %s.', 30, 'test_helpers.py', 3]", "" ], - "asctime": "2020-01-28 20:37:38,677", - "created": 1580240258.67793, + "asctime": "2020-12-21 01:18:51,704", + "created": 1608509931.704652, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3773,8 +3788,8 @@ "[ 'Log entry number %d with level %s.', 30, 'test_helpers.py', 3 ]", "" ], - "asctime": "2020-01-28 20:37:38,677", - "created": 1580240258.677826, + "asctime": "2020-12-21 01:18:51,704", + "created": 1608509931.704541, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3784,14 +3799,14 @@ "lineno": 22, "message": "Result (Logged information): [ 'Log entry number %d with level %s.', 30, 'test_helpers.py', 3 ] ()", "module": "test", - "msecs": 677.825927734375, + "msecs": 704.5409679412842, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 44.023990631103516, - "thread": 140535171049280, + "relativeCreated": 29.594898223876953, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -3800,8 +3815,8 @@ "[ 'Log entry number %d with level %s.', 30, 'test_helpers.py', 3 ]", "" ], - "asctime": "2020-01-28 20:37:38,677", - "created": 1580240258.677872, + "asctime": "2020-12-21 01:18:51,704", + "created": 1608509931.704588, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3811,35 +3826,35 @@ "lineno": 26, "message": "Expectation (Logged information): result = [ 'Log entry number %d with level %s.', 30, 'test_helpers.py', 3 ] ()", "module": "test", - "msecs": 677.8719425201416, + "msecs": 704.5879364013672, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 44.07000541687012, - "thread": 140535171049280, + "relativeCreated": 29.64186668395996, + "thread": 140208879470400, "threadName": "MainThread" } ], - "msecs": 677.9301166534424, + "msecs": 704.6520709991455, "msg": "Logged information is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 44.1281795501709, - "thread": 140535171049280, + "relativeCreated": 29.70600128173828, + "thread": 140208879470400, "threadName": "MainThread", - "time_consumption": 5.817413330078125e-05 + "time_consumption": 6.413459777832031e-05 }, { "args": [ "['Log entry number %d with level %s.', 40, 'test_helpers.py', 4]", "" ], - "asctime": "2020-01-28 20:37:38,678", - "created": 1580240258.678182, + "asctime": "2020-12-21 01:18:51,704", + "created": 1608509931.704835, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3856,8 +3871,8 @@ "[ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 4 ]", "" ], - "asctime": "2020-01-28 20:37:38,678", - "created": 1580240258.678021, + "asctime": "2020-12-21 01:18:51,704", + "created": 1608509931.704728, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3867,14 +3882,14 @@ "lineno": 22, "message": "Result (Logged information): [ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 4 ] ()", "module": "test", - "msecs": 678.0209541320801, + "msecs": 704.7278881072998, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 44.219017028808594, - "thread": 140535171049280, + "relativeCreated": 29.781818389892578, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -3883,8 +3898,8 @@ "[ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 4 ]", "" ], - "asctime": "2020-01-28 20:37:38,678", - "created": 1580240258.678079, + "asctime": "2020-12-21 01:18:51,704", + "created": 1608509931.704775, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3894,35 +3909,35 @@ "lineno": 26, "message": "Expectation (Logged information): result = [ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 4 ] ()", "module": "test", - "msecs": 678.0788898468018, + "msecs": 704.7750949859619, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 44.27695274353027, - "thread": 140535171049280, + "relativeCreated": 29.829025268554688, + "thread": 140208879470400, "threadName": "MainThread" } ], - "msecs": 678.1818866729736, + "msecs": 704.8349380493164, "msg": "Logged information is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 44.37994956970215, - "thread": 140535171049280, + "relativeCreated": 29.88886833190918, + "thread": 140208879470400, "threadName": "MainThread", - "time_consumption": 0.000102996826171875 + "time_consumption": 5.984306335449219e-05 }, { "args": [ "['Log entry number %d with level %s.', 50, 'test_helpers.py', 5]", "" ], - "asctime": "2020-01-28 20:37:38,679", - "created": 1580240258.67905, + "asctime": "2020-12-21 01:18:51,705", + "created": 1608509931.705019, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3939,8 +3954,8 @@ "[ 'Log entry number %d with level %s.', 50, 'test_helpers.py', 5 ]", "" ], - "asctime": "2020-01-28 20:37:38,678", - "created": 1580240258.678482, + "asctime": "2020-12-21 01:18:51,704", + "created": 1608509931.704915, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3950,14 +3965,14 @@ "lineno": 22, "message": "Result (Logged information): [ 'Log entry number %d with level %s.', 50, 'test_helpers.py', 5 ] ()", "module": "test", - "msecs": 678.4820556640625, + "msecs": 704.9150466918945, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 44.680118560791016, - "thread": 140535171049280, + "relativeCreated": 29.968976974487305, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -3966,8 +3981,8 @@ "[ 'Log entry number %d with level %s.', 50, 'test_helpers.py', 5 ]", "" ], - "asctime": "2020-01-28 20:37:38,678", - "created": 1580240258.678697, + "asctime": "2020-12-21 01:18:51,704", + "created": 1608509931.704962, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3977,35 +3992,35 @@ "lineno": 26, "message": "Expectation (Logged information): result = [ 'Log entry number %d with level %s.', 50, 'test_helpers.py', 5 ] ()", "module": "test", - "msecs": 678.6971092224121, + "msecs": 704.9620151519775, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 44.895172119140625, - "thread": 140535171049280, + "relativeCreated": 30.015945434570312, + "thread": 140208879470400, "threadName": "MainThread" } ], - "msecs": 679.0499687194824, + "msecs": 705.0189971923828, "msg": "Logged information is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 45.24803161621094, - "thread": 140535171049280, + "relativeCreated": 30.072927474975586, + "thread": 140208879470400, "threadName": "MainThread", - "time_consumption": 0.0003528594970703125 + "time_consumption": 5.698204040527344e-05 }, { "args": [ "['Log entry number %d with level %s.', 20, 'test_helpers.py', 6]", "" ], - "asctime": "2020-01-28 20:37:38,679", - "created": 1580240258.679748, + "asctime": "2020-12-21 01:18:51,705", + "created": 1608509931.705196, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4022,8 +4037,8 @@ "[ 'Log entry number %d with level %s.', 20, 'test_helpers.py', 6 ]", "" ], - "asctime": "2020-01-28 20:37:38,679", - "created": 1580240258.679347, + "asctime": "2020-12-21 01:18:51,705", + "created": 1608509931.705092, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4033,14 +4048,14 @@ "lineno": 22, "message": "Result (Logged information): [ 'Log entry number %d with level %s.', 20, 'test_helpers.py', 6 ] ()", "module": "test", - "msecs": 679.347038269043, + "msecs": 705.0919532775879, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 45.545101165771484, - "thread": 140535171049280, + "relativeCreated": 30.145883560180664, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -4049,8 +4064,8 @@ "[ 'Log entry number %d with level %s.', 20, 'test_helpers.py', 6 ]", "" ], - "asctime": "2020-01-28 20:37:38,679", - "created": 1580240258.679531, + "asctime": "2020-12-21 01:18:51,705", + "created": 1608509931.705138, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4060,35 +4075,35 @@ "lineno": 26, "message": "Expectation (Logged information): result = [ 'Log entry number %d with level %s.', 20, 'test_helpers.py', 6 ] ()", "module": "test", - "msecs": 679.5310974121094, + "msecs": 705.1379680633545, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 45.72916030883789, - "thread": 140535171049280, + "relativeCreated": 30.191898345947266, + "thread": 140208879470400, "threadName": "MainThread" } ], - "msecs": 679.7480583190918, + "msecs": 705.1959037780762, "msg": "Logged information is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 45.94612121582031, - "thread": 140535171049280, + "relativeCreated": 30.249834060668945, + "thread": 140208879470400, "threadName": "MainThread", - "time_consumption": 0.00021696090698242188 + "time_consumption": 5.793571472167969e-05 }, { "args": [ "['Log entry number %d with level %s.', 40, 'test_helpers.py', 7]", "" ], - "asctime": "2020-01-28 20:37:38,680", - "created": 1580240258.680597, + "asctime": "2020-12-21 01:18:51,705", + "created": 1608509931.705374, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4105,8 +4120,8 @@ "[ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 7 ]", "" ], - "asctime": "2020-01-28 20:37:38,680", - "created": 1580240258.680312, + "asctime": "2020-12-21 01:18:51,705", + "created": 1608509931.705271, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4116,14 +4131,14 @@ "lineno": 22, "message": "Result (Logged information): [ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 7 ] ()", "module": "test", - "msecs": 680.311918258667, + "msecs": 705.2710056304932, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 46.50998115539551, - "thread": 140535171049280, + "relativeCreated": 30.324935913085938, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -4132,8 +4147,8 @@ "[ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 7 ]", "" ], - "asctime": "2020-01-28 20:37:38,680", - "created": 1580240258.680452, + "asctime": "2020-12-21 01:18:51,705", + "created": 1608509931.705317, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4143,39 +4158,39 @@ "lineno": 26, "message": "Expectation (Logged information): result = [ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 7 ] ()", "module": "test", - "msecs": 680.4521083831787, + "msecs": 705.3170204162598, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 46.65017127990723, - "thread": 140535171049280, + "relativeCreated": 30.37095069885254, + "thread": 140208879470400, "threadName": "MainThread" } ], - "msecs": 680.5970668792725, + "msecs": 705.374002456665, "msg": "Logged information is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 46.79512977600098, - "thread": 140535171049280, + "relativeCreated": 30.427932739257812, + "thread": 140208879470400, "threadName": "MainThread", - "time_consumption": 0.00014495849609375 + "time_consumption": 5.698204040527344e-05 } ], - "thread": 140535171049280, + "thread": 140208879470400, "threadName": "MainThread", - "time_consumption": 0.004528999328613281, - "time_finished": "2020-01-28 20:37:38,680", - "time_start": "2020-01-28 20:37:38,676" + "time_consumption": 0.002413034439086914, + "time_finished": "2020-12-21 01:18:51,705", + "time_start": "2020-12-21 01:18:51,702" }, "_fW5s8CzQEeqYsdFh5Cd6ng": { "args": null, - "asctime": "2020-01-28 20:37:38,689", - "created": 1580240258.689825, + "asctime": "2020-12-21 01:18:51,712", + "created": 1608509931.712255, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -4186,18 +4201,18 @@ "message": "_fW5s8CzQEeqYsdFh5Cd6ng", "module": "__init__", "moduleLogger": [], - "msecs": 689.8250579833984, + "msecs": 712.2550010681152, "msg": "_fW5s8CzQEeqYsdFh5Cd6ng", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/report/unittest/src/tests/__init__.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 56.02312088012695, + "relativeCreated": 37.30893135070801, "testcaseLogger": [ { "args": [], - "asctime": "2020-01-28 20:37:38,691", - "created": 1580240258.691362, + "asctime": "2020-12-21 01:18:51,714", + "created": 1608509931.714519, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -4210,8 +4225,8 @@ "moduleLogger": [ { "args": [], - "asctime": "2020-01-28 20:37:38,689", - "created": 1580240258.689911, + "asctime": "2020-12-21 01:18:51,712", + "created": 1608509931.712332, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -4221,14 +4236,14 @@ "lineno": 22, "message": "Configuring collecting logger", "module": "test_helpers", - "msecs": 689.910888671875, + "msecs": 712.332010269165, "msg": "Configuring collecting logger", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 56.108951568603516, - "thread": 140535171049280, + "relativeCreated": 37.38594055175781, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -4237,8 +4252,8 @@ "DEBUG", "collectingRingHandler" ], - "asctime": "2020-01-28 20:37:38,689", - "created": 1580240258.689997, + "asctime": "2020-12-21 01:18:51,712", + "created": 1608509931.71241, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -4248,14 +4263,14 @@ "lineno": 36, "message": "Passing \"Log entry number 1 with level DEBUG.\" to collectingRingHandler.", "module": "test_helpers", - "msecs": 689.9969577789307, + "msecs": 712.4099731445312, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 56.19502067565918, - "thread": 140535171049280, + "relativeCreated": 37.46390342712402, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -4264,8 +4279,8 @@ "INFO", "collectingRingHandler" ], - "asctime": "2020-01-28 20:37:38,690", - "created": 1580240258.690181, + "asctime": "2020-12-21 01:18:51,712", + "created": 1608509931.712697, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -4275,14 +4290,14 @@ "lineno": 36, "message": "Passing \"Log entry number 2 with level INFO.\" to collectingRingHandler.", "module": "test_helpers", - "msecs": 690.1810169219971, + "msecs": 712.6970291137695, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 56.379079818725586, - "thread": 140535171049280, + "relativeCreated": 37.750959396362305, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -4291,8 +4306,8 @@ "WARNING", "collectingRingHandler" ], - "asctime": "2020-01-28 20:37:38,690", - "created": 1580240258.690533, + "asctime": "2020-12-21 01:18:51,712", + "created": 1608509931.712975, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -4302,14 +4317,14 @@ "lineno": 36, "message": "Passing \"Log entry number 3 with level WARNING.\" to collectingRingHandler.", "module": "test_helpers", - "msecs": 690.532922744751, + "msecs": 712.975025177002, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 56.73098564147949, - "thread": 140535171049280, + "relativeCreated": 38.02895545959473, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -4318,8 +4333,8 @@ "ERROR", "collectingRingHandler" ], - "asctime": "2020-01-28 20:37:38,690", - "created": 1580240258.690706, + "asctime": "2020-12-21 01:18:51,713", + "created": 1608509931.713259, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -4329,14 +4344,14 @@ "lineno": 36, "message": "Passing \"Log entry number 4 with level ERROR.\" to collectingRingHandler.", "module": "test_helpers", - "msecs": 690.7060146331787, + "msecs": 713.2589817047119, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 56.90407752990723, - "thread": 140535171049280, + "relativeCreated": 38.31291198730469, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -4345,8 +4360,8 @@ "CRITICAL", "collectingRingHandler" ], - "asctime": "2020-01-28 20:37:38,690", - "created": 1580240258.690873, + "asctime": "2020-12-21 01:18:51,713", + "created": 1608509931.71354, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -4356,14 +4371,14 @@ "lineno": 36, "message": "Passing \"Log entry number 5 with level CRITICAL.\" to collectingRingHandler.", "module": "test_helpers", - "msecs": 690.8729076385498, + "msecs": 713.5400772094727, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 57.07097053527832, - "thread": 140535171049280, + "relativeCreated": 38.59400749206543, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -4372,8 +4387,8 @@ "INFO", "collectingRingHandler" ], - "asctime": "2020-01-28 20:37:38,691", - "created": 1580240258.691036, + "asctime": "2020-12-21 01:18:51,713", + "created": 1608509931.713831, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -4383,14 +4398,14 @@ "lineno": 36, "message": "Passing \"Log entry number 6 with level INFO.\" to collectingRingHandler.", "module": "test_helpers", - "msecs": 691.0359859466553, + "msecs": 713.8309478759766, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 57.23404884338379, - "thread": 140535171049280, + "relativeCreated": 38.884878158569336, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -4399,8 +4414,8 @@ "ERROR", "collectingRingHandler" ], - "asctime": "2020-01-28 20:37:38,691", - "created": 1580240258.691204, + "asctime": "2020-12-21 01:18:51,714", + "created": 1608509931.71411, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -4410,35 +4425,35 @@ "lineno": 36, "message": "Passing \"Log entry number 7 with level ERROR.\" to collectingRingHandler.", "module": "test_helpers", - "msecs": 691.2040710449219, + "msecs": 714.1098976135254, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 57.40213394165039, - "thread": 140535171049280, + "relativeCreated": 39.163827896118164, + "thread": 140208879470400, "threadName": "MainThread" } ], - "msecs": 691.3619041442871, + "msecs": 714.5190238952637, "msg": "Running logger test sequence.", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 57.559967041015625, - "thread": 140535171049280, + "relativeCreated": 39.572954177856445, + "thread": 140208879470400, "threadName": "MainThread", - "time_consumption": 0.00015783309936523438 + "time_consumption": 0.00040912628173828125 }, { "args": [ "5", "" ], - "asctime": "2020-01-28 20:37:38,691", - "created": 1580240258.691563, + "asctime": "2020-12-21 01:18:51,714", + "created": 1608509931.714741, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4455,8 +4470,8 @@ "5", "" ], - "asctime": "2020-01-28 20:37:38,691", - "created": 1580240258.691464, + "asctime": "2020-12-21 01:18:51,714", + "created": 1608509931.714643, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4466,14 +4481,14 @@ "lineno": 22, "message": "Result (Length of collectingRingHandler): 5 ()", "module": "test", - "msecs": 691.4639472961426, + "msecs": 714.6430015563965, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 57.662010192871094, - "thread": 140535171049280, + "relativeCreated": 39.69693183898926, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -4482,8 +4497,8 @@ "5", "" ], - "asctime": "2020-01-28 20:37:38,691", - "created": 1580240258.69151, + "asctime": "2020-12-21 01:18:51,714", + "created": 1608509931.714692, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4493,35 +4508,35 @@ "lineno": 26, "message": "Expectation (Length of collectingRingHandler): result = 5 ()", "module": "test", - "msecs": 691.5099620819092, + "msecs": 714.6921157836914, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 57.708024978637695, - "thread": 140535171049280, + "relativeCreated": 39.74604606628418, + "thread": 140208879470400, "threadName": "MainThread" } ], - "msecs": 691.5628910064697, + "msecs": 714.7409915924072, "msg": "Length of collectingRingHandler is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 57.76095390319824, - "thread": 140535171049280, + "relativeCreated": 39.794921875, + "thread": 140208879470400, "threadName": "MainThread", - "time_consumption": 5.2928924560546875e-05 + "time_consumption": 4.887580871582031e-05 }, { "args": [ "3", "" ], - "asctime": "2020-01-28 20:37:38,691", - "created": 1580240258.691769, + "asctime": "2020-12-21 01:18:51,714", + "created": 1608509931.714962, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4538,8 +4553,8 @@ "3", "" ], - "asctime": "2020-01-28 20:37:38,691", - "created": 1580240258.691678, + "asctime": "2020-12-21 01:18:51,714", + "created": 1608509931.714855, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4549,14 +4564,14 @@ "lineno": 22, "message": "Result (Length of collectingRingHandler after reinitialisation): 3 ()", "module": "test", - "msecs": 691.6780471801758, + "msecs": 714.8549556732178, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 57.8761100769043, - "thread": 140535171049280, + "relativeCreated": 39.90888595581055, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -4565,8 +4580,8 @@ "3", "" ], - "asctime": "2020-01-28 20:37:38,691", - "created": 1580240258.691724, + "asctime": "2020-12-21 01:18:51,714", + "created": 1608509931.714913, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4576,35 +4591,35 @@ "lineno": 26, "message": "Expectation (Length of collectingRingHandler after reinitialisation): result = 3 ()", "module": "test", - "msecs": 691.7240619659424, + "msecs": 714.9128913879395, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 57.9221248626709, - "thread": 140535171049280, + "relativeCreated": 39.96682167053223, + "thread": 140208879470400, "threadName": "MainThread" } ], - "msecs": 691.7688846588135, + "msecs": 714.9620056152344, "msg": "Length of collectingRingHandler after reinitialisation is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 57.96694755554199, - "thread": 140535171049280, + "relativeCreated": 40.01593589782715, + "thread": 140208879470400, "threadName": "MainThread", - "time_consumption": 4.482269287109375e-05 + "time_consumption": 4.9114227294921875e-05 }, { "args": [ "'Log entry number 5 with level CRITICAL.'", "" ], - "asctime": "2020-01-28 20:37:38,691", - "created": 1580240258.691992, + "asctime": "2020-12-21 01:18:51,715", + "created": 1608509931.715525, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4621,8 +4636,8 @@ "'Log entry number 5 with level CRITICAL.'", "" ], - "asctime": "2020-01-28 20:37:38,691", - "created": 1580240258.691879, + "asctime": "2020-12-21 01:18:51,715", + "created": 1608509931.715329, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4632,14 +4647,14 @@ "lineno": 22, "message": "Result (Log text): 'Log entry number 5 with level CRITICAL.' ()", "module": "test", - "msecs": 691.8790340423584, + "msecs": 715.3289318084717, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 58.077096939086914, - "thread": 140535171049280, + "relativeCreated": 40.38286209106445, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -4648,8 +4663,8 @@ "'Log entry number 5 with level CRITICAL.'", "" ], - "asctime": "2020-01-28 20:37:38,691", - "created": 1580240258.691937, + "asctime": "2020-12-21 01:18:51,715", + "created": 1608509931.715428, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4659,35 +4674,35 @@ "lineno": 26, "message": "Expectation (Log text): result = 'Log entry number 5 with level CRITICAL.' ()", "module": "test", - "msecs": 691.9369697570801, + "msecs": 715.4281139373779, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 58.135032653808594, - "thread": 140535171049280, + "relativeCreated": 40.4820442199707, + "thread": 140208879470400, "threadName": "MainThread" } ], - "msecs": 691.9920444488525, + "msecs": 715.5249118804932, "msg": "Log text is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 58.190107345581055, - "thread": 140535171049280, + "relativeCreated": 40.57884216308594, + "thread": 140208879470400, "threadName": "MainThread", - "time_consumption": 5.507469177246094e-05 + "time_consumption": 9.679794311523438e-05 }, { "args": [ "'Log entry number 6 with level INFO.'", "" ], - "asctime": "2020-01-28 20:37:38,692", - "created": 1580240258.692164, + "asctime": "2020-12-21 01:18:51,716", + "created": 1608509931.71605, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4704,8 +4719,8 @@ "'Log entry number 6 with level INFO.'", "" ], - "asctime": "2020-01-28 20:37:38,692", - "created": 1580240258.692075, + "asctime": "2020-12-21 01:18:51,715", + "created": 1608509931.715845, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4715,14 +4730,14 @@ "lineno": 22, "message": "Result (Log text): 'Log entry number 6 with level INFO.' ()", "module": "test", - "msecs": 692.0750141143799, + "msecs": 715.8451080322266, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 58.2730770111084, - "thread": 140535171049280, + "relativeCreated": 40.899038314819336, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -4731,8 +4746,8 @@ "'Log entry number 6 with level INFO.'", "" ], - "asctime": "2020-01-28 20:37:38,692", - "created": 1580240258.692119, + "asctime": "2020-12-21 01:18:51,715", + "created": 1608509931.715957, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4742,35 +4757,35 @@ "lineno": 26, "message": "Expectation (Log text): result = 'Log entry number 6 with level INFO.' ()", "module": "test", - "msecs": 692.1188831329346, + "msecs": 715.9569263458252, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 58.316946029663086, - "thread": 140535171049280, + "relativeCreated": 41.01085662841797, + "thread": 140208879470400, "threadName": "MainThread" } ], - "msecs": 692.1639442443848, + "msecs": 716.0499095916748, "msg": "Log text is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 58.36200714111328, - "thread": 140535171049280, + "relativeCreated": 41.10383987426758, + "thread": 140208879470400, "threadName": "MainThread", - "time_consumption": 4.506111145019531e-05 + "time_consumption": 9.298324584960938e-05 }, { "args": [ "'Log entry number 7 with level ERROR.'", "" ], - "asctime": "2020-01-28 20:37:38,692", - "created": 1580240258.692321, + "asctime": "2020-12-21 01:18:51,716", + "created": 1608509931.716389, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4787,8 +4802,8 @@ "'Log entry number 7 with level ERROR.'", "" ], - "asctime": "2020-01-28 20:37:38,692", - "created": 1580240258.692237, + "asctime": "2020-12-21 01:18:51,716", + "created": 1608509931.716201, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4798,14 +4813,14 @@ "lineno": 22, "message": "Result (Log text): 'Log entry number 7 with level ERROR.' ()", "module": "test", - "msecs": 692.2369003295898, + "msecs": 716.2010669708252, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 58.43496322631836, - "thread": 140535171049280, + "relativeCreated": 41.25499725341797, + "thread": 140208879470400, "threadName": "MainThread" }, { @@ -4814,8 +4829,8 @@ "'Log entry number 7 with level ERROR.'", "" ], - "asctime": "2020-01-28 20:37:38,692", - "created": 1580240258.692277, + "asctime": "2020-12-21 01:18:51,716", + "created": 1608509931.716291, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4825,38 +4840,38 @@ "lineno": 26, "message": "Expectation (Log text): result = 'Log entry number 7 with level ERROR.' ()", "module": "test", - "msecs": 692.2769546508789, + "msecs": 716.2909507751465, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 58.47501754760742, - "thread": 140535171049280, + "relativeCreated": 41.34488105773926, + "thread": 140208879470400, "threadName": "MainThread" } ], - "msecs": 692.3210620880127, + "msecs": 716.3889408111572, "msg": "Log text is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 3485, + "process": 93516, "processName": "MainProcess", - "relativeCreated": 58.51912498474121, - "thread": 140535171049280, + "relativeCreated": 41.44287109375, + "thread": 140208879470400, "threadName": "MainThread", - "time_consumption": 4.410743713378906e-05 + "time_consumption": 9.799003601074219e-05 } ], - "thread": 140535171049280, + "thread": 140208879470400, "threadName": "MainThread", - "time_consumption": 0.002496004104614258, - "time_finished": "2020-01-28 20:37:38,692", - "time_start": "2020-01-28 20:37:38,689" + "time_consumption": 0.004133939743041992, + "time_finished": "2020-12-21 01:18:51,716", + "time_start": "2020-12-21 01:18:51,712" } }, "testrun_id": "p2", - "time_consumption": 0.015258073806762695, + "time_consumption": 0.01283407211303711, "uid_list_sorted": [ "_XzMFcHYZEem_kd-7nxt1sg", "_ErFPoCvVEeqssZLMJF_fcg", @@ -4876,7 +4891,7 @@ "_XzMFcHYZEem_kd-7nxt1sg": "Store log records (collectingHandler)", "_fW5s8CzQEeqYsdFh5Cd6ng": "Number of stored logs in the RingHandler" }, - "interpreter": "python 3.6.9 (final)", + "interpreter": "python 3.8.5 (final)", "name": "Default Testsession name", "number_of_failed_tests": 0, "number_of_possibly_failed_tests": 0, @@ -4892,8 +4907,8 @@ "testcases": { "_ErFPoCvVEeqssZLMJF_fcg": { "args": null, - "asctime": "2020-01-28 20:37:39,128", - "created": 1580240259.1283655, + "asctime": "2020-12-21 01:18:52,060", + "created": 1608509932.060733, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -4904,19 +4919,19 @@ "message": "_ErFPoCvVEeqssZLMJF_fcg", "module": "__init__", "moduleLogger": [], - "msecs": 128.36551666259766, + "msecs": 60.73307991027832, "msg": "_ErFPoCvVEeqssZLMJF_fcg", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/report/unittest/src/tests/__init__.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 73.98533821105957, + "relativeCreated": 63.365936279296875, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2020-01-28 20:37:39,130", - "created": 1580240259.1302087, + "asctime": "2020-12-21 01:18:52,061", + "created": 1608509932.0614905, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -4929,8 +4944,8 @@ "moduleLogger": [ { "args": [], - "asctime": "2020-01-28 20:37:39,128", - "created": 1580240259.128489, + "asctime": "2020-12-21 01:18:52,060", + "created": 1608509932.060795, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -4940,15 +4955,15 @@ "lineno": 22, "message": "Configuring collecting logger", "module": "test_helpers", - "msecs": 128.48901748657227, + "msecs": 60.79506874084473, "msg": "Configuring collecting logger", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 74.10883903503418, + "relativeCreated": 63.42792510986328, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -4957,8 +4972,8 @@ "DEBUG", "collectingHandler" ], - "asctime": "2020-01-28 20:37:39,128", - "created": 1580240259.128614, + "asctime": "2020-12-21 01:18:52,060", + "created": 1608509932.0608604, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -4968,15 +4983,15 @@ "lineno": 36, "message": "Passing \"Log entry number 1 with level DEBUG.\" to collectingHandler.", "module": "test_helpers", - "msecs": 128.61394882202148, + "msecs": 60.860395431518555, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 74.2337703704834, + "relativeCreated": 63.49325180053711, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -4985,8 +5000,8 @@ "INFO", "collectingHandler" ], - "asctime": "2020-01-28 20:37:39,128", - "created": 1580240259.128825, + "asctime": "2020-12-21 01:18:52,060", + "created": 1608509932.0609674, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -4996,15 +5011,15 @@ "lineno": 36, "message": "Passing \"Log entry number 2 with level INFO.\" to collectingHandler.", "module": "test_helpers", - "msecs": 128.82494926452637, + "msecs": 60.967445373535156, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 74.44477081298828, + "relativeCreated": 63.60030174255371, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -5013,8 +5028,8 @@ "WARNING", "collectingHandler" ], - "asctime": "2020-01-28 20:37:39,129", - "created": 1580240259.1291196, + "asctime": "2020-12-21 01:18:52,061", + "created": 1608509932.0610583, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -5024,15 +5039,15 @@ "lineno": 36, "message": "Passing \"Log entry number 3 with level WARNING.\" to collectingHandler.", "module": "test_helpers", - "msecs": 129.1196346282959, + "msecs": 61.05828285217285, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 74.73945617675781, + "relativeCreated": 63.691139221191406, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -5041,8 +5056,8 @@ "ERROR", "collectingHandler" ], - "asctime": "2020-01-28 20:37:39,129", - "created": 1580240259.1294096, + "asctime": "2020-12-21 01:18:52,061", + "created": 1608509932.0611525, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -5052,15 +5067,15 @@ "lineno": 36, "message": "Passing \"Log entry number 4 with level ERROR.\" to collectingHandler.", "module": "test_helpers", - "msecs": 129.4095516204834, + "msecs": 61.15245819091797, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 75.02937316894531, + "relativeCreated": 63.78531455993652, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -5069,8 +5084,8 @@ "CRITICAL", "collectingHandler" ], - "asctime": "2020-01-28 20:37:39,129", - "created": 1580240259.1296656, + "asctime": "2020-12-21 01:18:52,061", + "created": 1608509932.0612388, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -5080,15 +5095,15 @@ "lineno": 36, "message": "Passing \"Log entry number 5 with level CRITICAL.\" to collectingHandler.", "module": "test_helpers", - "msecs": 129.66561317443848, + "msecs": 61.238765716552734, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 75.28543472290039, + "relativeCreated": 63.87162208557129, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -5097,8 +5112,8 @@ "INFO", "collectingHandler" ], - "asctime": "2020-01-28 20:37:39,129", - "created": 1580240259.1298513, + "asctime": "2020-12-21 01:18:52,061", + "created": 1608509932.061329, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -5108,15 +5123,15 @@ "lineno": 36, "message": "Passing \"Log entry number 6 with level INFO.\" to collectingHandler.", "module": "test_helpers", - "msecs": 129.8513412475586, + "msecs": 61.328887939453125, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 75.47116279602051, + "relativeCreated": 63.96174430847168, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -5125,8 +5140,8 @@ "ERROR", "collectingHandler" ], - "asctime": "2020-01-28 20:37:39,130", - "created": 1580240259.1300383, + "asctime": "2020-12-21 01:18:52,061", + "created": 1608509932.0614085, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -5136,34 +5151,34 @@ "lineno": 36, "message": "Passing \"Log entry number 7 with level ERROR.\" to collectingHandler.", "module": "test_helpers", - "msecs": 130.03826141357422, + "msecs": 61.40851974487305, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 75.65808296203613, + "relativeCreated": 64.0413761138916, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" } ], - "msecs": 130.20873069763184, + "msecs": 61.490535736083984, "msg": "Running logger test sequence.", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 75.82855224609375, + "relativeCreated": 64.12339210510254, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread", - "time_consumption": 0.0001704692840576172 + "time_consumption": 8.20159912109375e-05 }, { "args": [], - "asctime": "2020-01-28 20:37:39,132", - "created": 1580240259.1321766, + "asctime": "2020-12-21 01:18:52,062", + "created": 1608509932.0624735, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5180,8 +5195,8 @@ "[ 49, 134, 221, 309, 398, 486, 571 ]", "" ], - "asctime": "2020-01-28 20:37:39,130", - "created": 1580240259.1305168, + "asctime": "2020-12-21 01:18:52,061", + "created": 1608509932.0616026, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5191,15 +5206,15 @@ "lineno": 22, "message": "Result (Indexlist of log entries in stringrepresentation): [ 49, 134, 221, 309, 398, 486, 571 ] ()", "module": "test", - "msecs": 130.51676750183105, + "msecs": 61.60259246826172, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 76.13658905029297, + "relativeCreated": 64.23544883728027, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -5208,8 +5223,8 @@ "[ 49, 134, 221, 309, 398, 486, 571 ]", "" ], - "asctime": "2020-01-28 20:37:39,130", - "created": 1580240259.1306992, + "asctime": "2020-12-21 01:18:52,061", + "created": 1608509932.0616481, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5219,15 +5234,15 @@ "lineno": 26, "message": "Expectation (Indexlist of log entries in stringrepresentation): result = [ 49, 134, 221, 309, 398, 486, 571 ] ()", "module": "test", - "msecs": 130.69915771484375, + "msecs": 61.64813041687012, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 76.31897926330566, + "relativeCreated": 64.28098678588867, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -5236,8 +5251,8 @@ "49", "" ], - "asctime": "2020-01-28 20:37:39,130", - "created": 1580240259.130847, + "asctime": "2020-12-21 01:18:52,061", + "created": 1608509932.06169, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5247,15 +5262,15 @@ "lineno": 22, "message": "Result (Submitted value number 1): 49 ()", "module": "test", - "msecs": 130.84697723388672, + "msecs": 61.69009208679199, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 76.46679878234863, + "relativeCreated": 64.32294845581055, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -5264,8 +5279,8 @@ "49", "" ], - "asctime": "2020-01-28 20:37:39,130", - "created": 1580240259.130943, + "asctime": "2020-12-21 01:18:52,061", + "created": 1608509932.0617301, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5275,15 +5290,15 @@ "lineno": 26, "message": "Expectation (Submitted value number 1): result = 49 ()", "module": "test", - "msecs": 130.94305992126465, + "msecs": 61.730146408081055, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 76.56288146972656, + "relativeCreated": 64.36300277709961, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -5291,8 +5306,8 @@ "49", "" ], - "asctime": "2020-01-28 20:37:39,131", - "created": 1580240259.1310542, + "asctime": "2020-12-21 01:18:52,061", + "created": 1608509932.0617692, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5302,15 +5317,15 @@ "lineno": 142, "message": "Submitted value number 1 is correct (Content 49 and Type is ).", "module": "test", - "msecs": 131.05416297912598, + "msecs": 61.76924705505371, "msg": "Submitted value number 1 is correct (Content %s and Type is %s).", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 76.67398452758789, + "relativeCreated": 64.40210342407227, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -5319,8 +5334,8 @@ "134", "" ], - "asctime": "2020-01-28 20:37:39,131", - "created": 1580240259.131149, + "asctime": "2020-12-21 01:18:52,061", + "created": 1608509932.0618072, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5330,15 +5345,15 @@ "lineno": 22, "message": "Result (Submitted value number 2): 134 ()", "module": "test", - "msecs": 131.1490535736084, + "msecs": 61.80715560913086, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 76.76887512207031, + "relativeCreated": 64.44001197814941, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -5347,8 +5362,8 @@ "134", "" ], - "asctime": "2020-01-28 20:37:39,131", - "created": 1580240259.1312304, + "asctime": "2020-12-21 01:18:52,061", + "created": 1608509932.061845, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5358,15 +5373,15 @@ "lineno": 26, "message": "Expectation (Submitted value number 2): result = 134 ()", "module": "test", - "msecs": 131.23035430908203, + "msecs": 61.84506416320801, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 76.85017585754395, + "relativeCreated": 64.47792053222656, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -5374,8 +5389,8 @@ "134", "" ], - "asctime": "2020-01-28 20:37:39,131", - "created": 1580240259.13132, + "asctime": "2020-12-21 01:18:52,061", + "created": 1608509932.0618796, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5385,15 +5400,15 @@ "lineno": 142, "message": "Submitted value number 2 is correct (Content 134 and Type is ).", "module": "test", - "msecs": 131.31999969482422, + "msecs": 61.879634857177734, "msg": "Submitted value number 2 is correct (Content %s and Type is %s).", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 76.93982124328613, + "relativeCreated": 64.51249122619629, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -5402,8 +5417,8 @@ "221", "" ], - "asctime": "2020-01-28 20:37:39,131", - "created": 1580240259.1314104, + "asctime": "2020-12-21 01:18:52,061", + "created": 1608509932.0619147, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5413,15 +5428,15 @@ "lineno": 22, "message": "Result (Submitted value number 3): 221 ()", "module": "test", - "msecs": 131.4103603363037, + "msecs": 61.914682388305664, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 77.03018188476562, + "relativeCreated": 64.54753875732422, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -5430,8 +5445,8 @@ "221", "" ], - "asctime": "2020-01-28 20:37:39,131", - "created": 1580240259.1314921, + "asctime": "2020-12-21 01:18:52,061", + "created": 1608509932.061949, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5441,15 +5456,15 @@ "lineno": 26, "message": "Expectation (Submitted value number 3): result = 221 ()", "module": "test", - "msecs": 131.49213790893555, + "msecs": 61.94901466369629, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 77.11195945739746, + "relativeCreated": 64.58187103271484, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -5457,8 +5472,8 @@ "221", "" ], - "asctime": "2020-01-28 20:37:39,131", - "created": 1580240259.1315722, + "asctime": "2020-12-21 01:18:52,061", + "created": 1608509932.0619836, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5468,15 +5483,15 @@ "lineno": 142, "message": "Submitted value number 3 is correct (Content 221 and Type is ).", "module": "test", - "msecs": 131.57224655151367, + "msecs": 61.983585357666016, "msg": "Submitted value number 3 is correct (Content %s and Type is %s).", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 77.19206809997559, + "relativeCreated": 64.61644172668457, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -5485,8 +5500,8 @@ "309", "" ], - "asctime": "2020-01-28 20:37:39,131", - "created": 1580240259.1316566, + "asctime": "2020-12-21 01:18:52,062", + "created": 1608509932.0620189, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5496,15 +5511,15 @@ "lineno": 22, "message": "Result (Submitted value number 4): 309 ()", "module": "test", - "msecs": 131.65664672851562, + "msecs": 62.01887130737305, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 77.27646827697754, + "relativeCreated": 64.6517276763916, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -5513,8 +5528,8 @@ "309", "" ], - "asctime": "2020-01-28 20:37:39,131", - "created": 1580240259.1316986, + "asctime": "2020-12-21 01:18:52,062", + "created": 1608509932.062055, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5524,15 +5539,15 @@ "lineno": 26, "message": "Expectation (Submitted value number 4): result = 309 ()", "module": "test", - "msecs": 131.6986083984375, + "msecs": 62.055110931396484, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 77.31842994689941, + "relativeCreated": 64.68796730041504, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -5540,8 +5555,8 @@ "309", "" ], - "asctime": "2020-01-28 20:37:39,131", - "created": 1580240259.131738, + "asctime": "2020-12-21 01:18:52,062", + "created": 1608509932.062092, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5551,15 +5566,15 @@ "lineno": 142, "message": "Submitted value number 4 is correct (Content 309 and Type is ).", "module": "test", - "msecs": 131.73794746398926, + "msecs": 62.09206581115723, "msg": "Submitted value number 4 is correct (Content %s and Type is %s).", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 77.35776901245117, + "relativeCreated": 64.72492218017578, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -5568,8 +5583,8 @@ "398", "" ], - "asctime": "2020-01-28 20:37:39,131", - "created": 1580240259.131778, + "asctime": "2020-12-21 01:18:52,062", + "created": 1608509932.06215, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5579,15 +5594,15 @@ "lineno": 22, "message": "Result (Submitted value number 5): 398 ()", "module": "test", - "msecs": 131.77800178527832, + "msecs": 62.150001525878906, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 77.39782333374023, + "relativeCreated": 64.78285789489746, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -5596,8 +5611,8 @@ "398", "" ], - "asctime": "2020-01-28 20:37:39,131", - "created": 1580240259.1318169, + "asctime": "2020-12-21 01:18:52,062", + "created": 1608509932.0621955, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5607,15 +5622,15 @@ "lineno": 26, "message": "Expectation (Submitted value number 5): result = 398 ()", "module": "test", - "msecs": 131.81686401367188, + "msecs": 62.195539474487305, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 77.43668556213379, + "relativeCreated": 64.82839584350586, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -5623,8 +5638,8 @@ "398", "" ], - "asctime": "2020-01-28 20:37:39,131", - "created": 1580240259.1318626, + "asctime": "2020-12-21 01:18:52,062", + "created": 1608509932.0622325, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5634,15 +5649,15 @@ "lineno": 142, "message": "Submitted value number 5 is correct (Content 398 and Type is ).", "module": "test", - "msecs": 131.86264038085938, + "msecs": 62.23249435424805, "msg": "Submitted value number 5 is correct (Content %s and Type is %s).", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 77.48246192932129, + "relativeCreated": 64.8653507232666, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -5651,8 +5666,8 @@ "486", "" ], - "asctime": "2020-01-28 20:37:39,131", - "created": 1580240259.1319044, + "asctime": "2020-12-21 01:18:52,062", + "created": 1608509932.0622685, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5662,15 +5677,15 @@ "lineno": 22, "message": "Result (Submitted value number 6): 486 ()", "module": "test", - "msecs": 131.90436363220215, + "msecs": 62.26849555969238, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 77.52418518066406, + "relativeCreated": 64.90135192871094, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -5679,8 +5694,8 @@ "486", "" ], - "asctime": "2020-01-28 20:37:39,131", - "created": 1580240259.1319733, + "asctime": "2020-12-21 01:18:52,062", + "created": 1608509932.0623019, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5690,15 +5705,15 @@ "lineno": 26, "message": "Expectation (Submitted value number 6): result = 486 ()", "module": "test", - "msecs": 131.9732666015625, + "msecs": 62.3018741607666, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 77.59308815002441, + "relativeCreated": 64.93473052978516, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -5706,8 +5721,8 @@ "486", "" ], - "asctime": "2020-01-28 20:37:39,132", - "created": 1580240259.1320138, + "asctime": "2020-12-21 01:18:52,062", + "created": 1608509932.0623357, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5717,15 +5732,15 @@ "lineno": 142, "message": "Submitted value number 6 is correct (Content 486 and Type is ).", "module": "test", - "msecs": 132.01379776000977, + "msecs": 62.33572959899902, "msg": "Submitted value number 6 is correct (Content %s and Type is %s).", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 77.63361930847168, + "relativeCreated": 64.96858596801758, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -5734,8 +5749,8 @@ "571", "" ], - "asctime": "2020-01-28 20:37:39,132", - "created": 1580240259.1320553, + "asctime": "2020-12-21 01:18:52,062", + "created": 1608509932.0623703, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5745,15 +5760,15 @@ "lineno": 22, "message": "Result (Submitted value number 7): 571 ()", "module": "test", - "msecs": 132.05528259277344, + "msecs": 62.37030029296875, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 77.67510414123535, + "relativeCreated": 65.0031566619873, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -5762,8 +5777,8 @@ "571", "" ], - "asctime": "2020-01-28 20:37:39,132", - "created": 1580240259.1320982, + "asctime": "2020-12-21 01:18:52,062", + "created": 1608509932.062404, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5773,15 +5788,15 @@ "lineno": 26, "message": "Expectation (Submitted value number 7): result = 571 ()", "module": "test", - "msecs": 132.09819793701172, + "msecs": 62.40391731262207, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 77.71801948547363, + "relativeCreated": 65.03677368164062, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -5789,8 +5804,8 @@ "571", "" ], - "asctime": "2020-01-28 20:37:39,132", - "created": 1580240259.132138, + "asctime": "2020-12-21 01:18:52,062", + "created": 1608509932.0624373, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5800,41 +5815,41 @@ "lineno": 142, "message": "Submitted value number 7 is correct (Content 571 and Type is ).", "module": "test", - "msecs": 132.13801383972168, + "msecs": 62.43729591369629, "msg": "Submitted value number 7 is correct (Content %s and Type is %s).", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 77.7578353881836, + "relativeCreated": 65.07015228271484, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" } ], - "msecs": 132.17663764953613, + "msecs": 62.47353553771973, "msg": "Indexlist of log entries in stringrepresentation: Values and number of submitted values is correct. See detailed log for more information.", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 77.79645919799805, + "relativeCreated": 65.10639190673828, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread", - "time_consumption": 3.8623809814453125e-05 + "time_consumption": 3.62396240234375e-05 } ], - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread", - "time_consumption": 0.0038111209869384766, - "time_finished": "2020-01-28 20:37:39,132", - "time_start": "2020-01-28 20:37:39,128" + "time_consumption": 0.0017404556274414062, + "time_finished": "2020-12-21 01:18:52,062", + "time_start": "2020-12-21 01:18:52,060" }, "_PVhZECvVEeqssZLMJF_fcg": { "args": null, - "asctime": "2020-01-28 20:37:39,132", - "created": 1580240259.1323493, + "asctime": "2020-12-21 01:18:52,062", + "created": 1608509932.0626814, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -5845,19 +5860,19 @@ "message": "_PVhZECvVEeqssZLMJF_fcg", "module": "__init__", "moduleLogger": [], - "msecs": 132.34925270080566, + "msecs": 62.68143653869629, "msg": "_PVhZECvVEeqssZLMJF_fcg", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/report/unittest/src/tests/__init__.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 77.96907424926758, + "relativeCreated": 65.31429290771484, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2020-01-28 20:37:39,134", - "created": 1580240259.1340277, + "asctime": "2020-12-21 01:18:52,063", + "created": 1608509932.0635445, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -5870,8 +5885,8 @@ "moduleLogger": [ { "args": [], - "asctime": "2020-01-28 20:37:39,132", - "created": 1580240259.132426, + "asctime": "2020-12-21 01:18:52,062", + "created": 1608509932.0627475, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -5881,15 +5896,15 @@ "lineno": 22, "message": "Configuring collecting logger", "module": "test_helpers", - "msecs": 132.42602348327637, + "msecs": 62.74747848510742, "msg": "Configuring collecting logger", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 78.04584503173828, + "relativeCreated": 65.38033485412598, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -5898,8 +5913,8 @@ "DEBUG", "collectingRingHandler" ], - "asctime": "2020-01-28 20:37:39,133", - "created": 1580240259.1330128, + "asctime": "2020-12-21 01:18:52,062", + "created": 1608509932.0628278, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -5909,15 +5924,15 @@ "lineno": 36, "message": "Passing \"Log entry number 1 with level DEBUG.\" to collectingRingHandler.", "module": "test_helpers", - "msecs": 133.0127716064453, + "msecs": 62.82782554626465, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 78.63259315490723, + "relativeCreated": 65.4606819152832, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -5926,8 +5941,8 @@ "INFO", "collectingRingHandler" ], - "asctime": "2020-01-28 20:37:39,133", - "created": 1580240259.1333227, + "asctime": "2020-12-21 01:18:52,062", + "created": 1608509932.0629454, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -5937,15 +5952,15 @@ "lineno": 36, "message": "Passing \"Log entry number 2 with level INFO.\" to collectingRingHandler.", "module": "test_helpers", - "msecs": 133.32271575927734, + "msecs": 62.94536590576172, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 78.94253730773926, + "relativeCreated": 65.57822227478027, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -5954,8 +5969,8 @@ "WARNING", "collectingRingHandler" ], - "asctime": "2020-01-28 20:37:39,133", - "created": 1580240259.1334596, + "asctime": "2020-12-21 01:18:52,063", + "created": 1608509932.0630515, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -5965,15 +5980,15 @@ "lineno": 36, "message": "Passing \"Log entry number 3 with level WARNING.\" to collectingRingHandler.", "module": "test_helpers", - "msecs": 133.45956802368164, + "msecs": 63.051462173461914, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 79.07938957214355, + "relativeCreated": 65.68431854248047, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -5982,8 +5997,8 @@ "ERROR", "collectingRingHandler" ], - "asctime": "2020-01-28 20:37:39,133", - "created": 1580240259.133573, + "asctime": "2020-12-21 01:18:52,063", + "created": 1608509932.06315, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -5993,15 +6008,15 @@ "lineno": 36, "message": "Passing \"Log entry number 4 with level ERROR.\" to collectingRingHandler.", "module": "test_helpers", - "msecs": 133.57305526733398, + "msecs": 63.14992904663086, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 79.1928768157959, + "relativeCreated": 65.78278541564941, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -6010,8 +6025,8 @@ "CRITICAL", "collectingRingHandler" ], - "asctime": "2020-01-28 20:37:39,133", - "created": 1580240259.133686, + "asctime": "2020-12-21 01:18:52,063", + "created": 1608509932.0632474, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -6021,15 +6036,15 @@ "lineno": 36, "message": "Passing \"Log entry number 5 with level CRITICAL.\" to collectingRingHandler.", "module": "test_helpers", - "msecs": 133.68606567382812, + "msecs": 63.2474422454834, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 79.30588722229004, + "relativeCreated": 65.88029861450195, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -6038,8 +6053,8 @@ "INFO", "collectingRingHandler" ], - "asctime": "2020-01-28 20:37:39,133", - "created": 1580240259.1338043, + "asctime": "2020-12-21 01:18:52,063", + "created": 1608509932.0633469, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -6049,15 +6064,15 @@ "lineno": 36, "message": "Passing \"Log entry number 6 with level INFO.\" to collectingRingHandler.", "module": "test_helpers", - "msecs": 133.8043212890625, + "msecs": 63.34686279296875, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 79.42414283752441, + "relativeCreated": 65.9797191619873, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -6066,8 +6081,8 @@ "ERROR", "collectingRingHandler" ], - "asctime": "2020-01-28 20:37:39,133", - "created": 1580240259.1339195, + "asctime": "2020-12-21 01:18:52,063", + "created": 1608509932.063443, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -6077,37 +6092,37 @@ "lineno": 36, "message": "Passing \"Log entry number 7 with level ERROR.\" to collectingRingHandler.", "module": "test_helpers", - "msecs": 133.91947746276855, + "msecs": 63.44294548034668, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 79.53929901123047, + "relativeCreated": 66.07580184936523, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" } ], - "msecs": 134.02771949768066, + "msecs": 63.544511795043945, "msg": "Running logger test sequence.", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 79.64754104614258, + "relativeCreated": 66.1773681640625, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread", - "time_consumption": 0.00010824203491210938 + "time_consumption": 0.00010156631469726562 }, { "args": [ "5", "" ], - "asctime": "2020-01-28 20:37:39,134", - "created": 1580240259.1342406, + "asctime": "2020-12-21 01:18:52,063", + "created": 1608509932.0636938, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6124,8 +6139,8 @@ "5", "" ], - "asctime": "2020-01-28 20:37:39,134", - "created": 1580240259.134137, + "asctime": "2020-12-21 01:18:52,063", + "created": 1608509932.063619, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6135,15 +6150,15 @@ "lineno": 22, "message": "Result (Length of collected logs): 5 ()", "module": "test", - "msecs": 134.13691520690918, + "msecs": 63.61889839172363, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 79.7567367553711, + "relativeCreated": 66.25175476074219, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -6152,8 +6167,8 @@ "5", "" ], - "asctime": "2020-01-28 20:37:39,134", - "created": 1580240259.13419, + "asctime": "2020-12-21 01:18:52,063", + "created": 1608509932.0636551, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6163,37 +6178,37 @@ "lineno": 26, "message": "Expectation (Length of collected logs): result = 5 ()", "module": "test", - "msecs": 134.19008255004883, + "msecs": 63.65513801574707, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 79.80990409851074, + "relativeCreated": 66.28799438476562, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" } ], - "msecs": 134.24062728881836, + "msecs": 63.69376182556152, "msg": "Length of collected logs is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 79.86044883728027, + "relativeCreated": 66.32661819458008, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread", - "time_consumption": 5.054473876953125e-05 + "time_consumption": 3.8623809814453125e-05 }, { "args": [ "['Log entry number %d with level %s.', 30, 'test_helpers.py', 3]", "" ], - "asctime": "2020-01-28 20:37:39,134", - "created": 1580240259.1344643, + "asctime": "2020-12-21 01:18:52,063", + "created": 1608509932.0638587, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6210,8 +6225,8 @@ "[ 'Log entry number %d with level %s.', 30, 'test_helpers.py', 3 ]", "" ], - "asctime": "2020-01-28 20:37:39,134", - "created": 1580240259.1343389, + "asctime": "2020-12-21 01:18:52,063", + "created": 1608509932.0637672, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6221,15 +6236,15 @@ "lineno": 22, "message": "Result (Logged information): [ 'Log entry number %d with level %s.', 30, 'test_helpers.py', 3 ] ()", "module": "test", - "msecs": 134.3388557434082, + "msecs": 63.767194747924805, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 79.95867729187012, + "relativeCreated": 66.40005111694336, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -6238,8 +6253,8 @@ "[ 'Log entry number %d with level %s.', 30, 'test_helpers.py', 3 ]", "" ], - "asctime": "2020-01-28 20:37:39,134", - "created": 1580240259.134381, + "asctime": "2020-12-21 01:18:52,063", + "created": 1608509932.063808, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6249,37 +6264,37 @@ "lineno": 26, "message": "Expectation (Logged information): result = [ 'Log entry number %d with level %s.', 30, 'test_helpers.py', 3 ] ()", "module": "test", - "msecs": 134.38105583190918, + "msecs": 63.80796432495117, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 80.0008773803711, + "relativeCreated": 66.44082069396973, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" } ], - "msecs": 134.46426391601562, + "msecs": 63.858747482299805, "msg": "Logged information is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 80.08408546447754, + "relativeCreated": 66.49160385131836, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread", - "time_consumption": 8.320808410644531e-05 + "time_consumption": 5.078315734863281e-05 }, { "args": [ "['Log entry number %d with level %s.', 40, 'test_helpers.py', 4]", "" ], - "asctime": "2020-01-28 20:37:39,134", - "created": 1580240259.1346304, + "asctime": "2020-12-21 01:18:52,064", + "created": 1608509932.0640147, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6296,8 +6311,8 @@ "[ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 4 ]", "" ], - "asctime": "2020-01-28 20:37:39,134", - "created": 1580240259.1345246, + "asctime": "2020-12-21 01:18:52,063", + "created": 1608509932.0639255, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6307,15 +6322,15 @@ "lineno": 22, "message": "Result (Logged information): [ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 4 ] ()", "module": "test", - "msecs": 134.52458381652832, + "msecs": 63.92550468444824, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 80.14440536499023, + "relativeCreated": 66.5583610534668, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -6324,8 +6339,8 @@ "[ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 4 ]", "" ], - "asctime": "2020-01-28 20:37:39,134", - "created": 1580240259.1345696, + "asctime": "2020-12-21 01:18:52,063", + "created": 1608509932.0639663, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6335,37 +6350,37 @@ "lineno": 26, "message": "Expectation (Logged information): result = [ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 4 ] ()", "module": "test", - "msecs": 134.56964492797852, + "msecs": 63.96627426147461, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 80.18946647644043, + "relativeCreated": 66.59913063049316, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" } ], - "msecs": 134.6304416656494, + "msecs": 64.01467323303223, "msg": "Logged information is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 80.25026321411133, + "relativeCreated": 66.64752960205078, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread", - "time_consumption": 6.079673767089844e-05 + "time_consumption": 4.839897155761719e-05 }, { "args": [ "['Log entry number %d with level %s.', 50, 'test_helpers.py', 5]", "" ], - "asctime": "2020-01-28 20:37:39,134", - "created": 1580240259.1347826, + "asctime": "2020-12-21 01:18:52,064", + "created": 1608509932.0641673, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6382,8 +6397,8 @@ "[ 'Log entry number %d with level %s.', 50, 'test_helpers.py', 5 ]", "" ], - "asctime": "2020-01-28 20:37:39,134", - "created": 1580240259.1346943, + "asctime": "2020-12-21 01:18:52,064", + "created": 1608509932.0640776, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6393,15 +6408,15 @@ "lineno": 22, "message": "Result (Logged information): [ 'Log entry number %d with level %s.', 50, 'test_helpers.py', 5 ] ()", "module": "test", - "msecs": 134.69433784484863, + "msecs": 64.07761573791504, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 80.31415939331055, + "relativeCreated": 66.7104721069336, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -6410,8 +6425,8 @@ "[ 'Log entry number %d with level %s.', 50, 'test_helpers.py', 5 ]", "" ], - "asctime": "2020-01-28 20:37:39,134", - "created": 1580240259.1347344, + "asctime": "2020-12-21 01:18:52,064", + "created": 1608509932.0641198, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6421,37 +6436,37 @@ "lineno": 26, "message": "Expectation (Logged information): result = [ 'Log entry number %d with level %s.', 50, 'test_helpers.py', 5 ] ()", "module": "test", - "msecs": 134.7343921661377, + "msecs": 64.11981582641602, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 80.35421371459961, + "relativeCreated": 66.75267219543457, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" } ], - "msecs": 134.7825527191162, + "msecs": 64.16726112365723, "msg": "Logged information is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 80.40237426757812, + "relativeCreated": 66.80011749267578, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread", - "time_consumption": 4.8160552978515625e-05 + "time_consumption": 4.744529724121094e-05 }, { "args": [ "['Log entry number %d with level %s.', 20, 'test_helpers.py', 6]", "" ], - "asctime": "2020-01-28 20:37:39,134", - "created": 1580240259.1349306, + "asctime": "2020-12-21 01:18:52,064", + "created": 1608509932.0643291, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6468,8 +6483,8 @@ "[ 'Log entry number %d with level %s.', 20, 'test_helpers.py', 6 ]", "" ], - "asctime": "2020-01-28 20:37:39,134", - "created": 1580240259.1348407, + "asctime": "2020-12-21 01:18:52,064", + "created": 1608509932.0642304, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6479,15 +6494,15 @@ "lineno": 22, "message": "Result (Logged information): [ 'Log entry number %d with level %s.', 20, 'test_helpers.py', 6 ] ()", "module": "test", - "msecs": 134.840726852417, + "msecs": 64.23044204711914, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 80.4605484008789, + "relativeCreated": 66.8632984161377, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -6496,8 +6511,8 @@ "[ 'Log entry number %d with level %s.', 20, 'test_helpers.py', 6 ]", "" ], - "asctime": "2020-01-28 20:37:39,134", - "created": 1580240259.1348832, + "asctime": "2020-12-21 01:18:52,064", + "created": 1608509932.0642822, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6507,37 +6522,37 @@ "lineno": 26, "message": "Expectation (Logged information): result = [ 'Log entry number %d with level %s.', 20, 'test_helpers.py', 6 ] ()", "module": "test", - "msecs": 134.88316535949707, + "msecs": 64.28217887878418, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 80.50298690795898, + "relativeCreated": 66.91503524780273, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" } ], - "msecs": 134.93061065673828, + "msecs": 64.32914733886719, "msg": "Logged information is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 80.5504322052002, + "relativeCreated": 66.96200370788574, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread", - "time_consumption": 4.744529724121094e-05 + "time_consumption": 4.696846008300781e-05 }, { "args": [ "['Log entry number %d with level %s.', 40, 'test_helpers.py', 7]", "" ], - "asctime": "2020-01-28 20:37:39,135", - "created": 1580240259.135074, + "asctime": "2020-12-21 01:18:52,064", + "created": 1608509932.0644772, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6554,8 +6569,8 @@ "[ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 7 ]", "" ], - "asctime": "2020-01-28 20:37:39,134", - "created": 1580240259.1349876, + "asctime": "2020-12-21 01:18:52,064", + "created": 1608509932.0643914, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6565,15 +6580,15 @@ "lineno": 22, "message": "Result (Logged information): [ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 7 ] ()", "module": "test", - "msecs": 134.98759269714355, + "msecs": 64.3913745880127, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 80.60741424560547, + "relativeCreated": 67.02423095703125, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -6582,8 +6597,8 @@ "[ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 7 ]", "" ], - "asctime": "2020-01-28 20:37:39,135", - "created": 1580240259.1350265, + "asctime": "2020-12-21 01:18:52,064", + "created": 1608509932.0644305, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6593,41 +6608,41 @@ "lineno": 26, "message": "Expectation (Logged information): result = [ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 7 ] ()", "module": "test", - "msecs": 135.0264549255371, + "msecs": 64.43047523498535, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 80.64627647399902, + "relativeCreated": 67.0633316040039, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" } ], - "msecs": 135.07390022277832, + "msecs": 64.47720527648926, "msg": "Logged information is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 80.69372177124023, + "relativeCreated": 67.11006164550781, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread", - "time_consumption": 4.744529724121094e-05 + "time_consumption": 4.673004150390625e-05 } ], - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread", - "time_consumption": 0.0027246475219726562, - "time_finished": "2020-01-28 20:37:39,135", - "time_start": "2020-01-28 20:37:39,132" + "time_consumption": 0.0017957687377929688, + "time_finished": "2020-12-21 01:18:52,064", + "time_start": "2020-12-21 01:18:52,062" }, "_QBmb8CvVEeqssZLMJF_fcg": { "args": null, - "asctime": "2020-01-28 20:37:39,135", - "created": 1580240259.1351936, + "asctime": "2020-12-21 01:18:52,064", + "created": 1608509932.064605, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -6638,19 +6653,19 @@ "message": "_QBmb8CvVEeqssZLMJF_fcg", "module": "__init__", "moduleLogger": [], - "msecs": 135.1935863494873, + "msecs": 64.6049976348877, "msg": "_QBmb8CvVEeqssZLMJF_fcg", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/report/unittest/src/tests/__init__.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 80.81340789794922, + "relativeCreated": 67.23785400390625, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2020-01-28 20:37:39,136", - "created": 1580240259.1361032, + "asctime": "2020-12-21 01:18:52,065", + "created": 1608509932.0655184, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -6663,8 +6678,8 @@ "moduleLogger": [ { "args": [], - "asctime": "2020-01-28 20:37:39,135", - "created": 1580240259.1352513, + "asctime": "2020-12-21 01:18:52,064", + "created": 1608509932.064669, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -6674,15 +6689,15 @@ "lineno": 22, "message": "Configuring collecting logger", "module": "test_helpers", - "msecs": 135.25128364562988, + "msecs": 64.66889381408691, "msg": "Configuring collecting logger", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 80.8711051940918, + "relativeCreated": 67.30175018310547, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -6691,8 +6706,8 @@ "DEBUG", "collectingRingHandler" ], - "asctime": "2020-01-28 20:37:39,135", - "created": 1580240259.1353092, + "asctime": "2020-12-21 01:18:52,064", + "created": 1608509932.0647392, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -6702,15 +6717,15 @@ "lineno": 36, "message": "Passing \"Log entry number 1 with level DEBUG.\" to collectingRingHandler.", "module": "test_helpers", - "msecs": 135.30921936035156, + "msecs": 64.73922729492188, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 80.92904090881348, + "relativeCreated": 67.37208366394043, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -6719,8 +6734,8 @@ "INFO", "collectingRingHandler" ], - "asctime": "2020-01-28 20:37:39,135", - "created": 1580240259.1354263, + "asctime": "2020-12-21 01:18:52,064", + "created": 1608509932.0648599, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -6730,15 +6745,15 @@ "lineno": 36, "message": "Passing \"Log entry number 2 with level INFO.\" to collectingRingHandler.", "module": "test_helpers", - "msecs": 135.42628288269043, + "msecs": 64.85986709594727, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 81.04610443115234, + "relativeCreated": 67.49272346496582, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -6747,8 +6762,8 @@ "WARNING", "collectingRingHandler" ], - "asctime": "2020-01-28 20:37:39,135", - "created": 1580240259.1355336, + "asctime": "2020-12-21 01:18:52,064", + "created": 1608509932.0649745, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -6758,15 +6773,15 @@ "lineno": 36, "message": "Passing \"Log entry number 3 with level WARNING.\" to collectingRingHandler.", "module": "test_helpers", - "msecs": 135.53357124328613, + "msecs": 64.97454643249512, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 81.15339279174805, + "relativeCreated": 67.60740280151367, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -6775,8 +6790,8 @@ "ERROR", "collectingRingHandler" ], - "asctime": "2020-01-28 20:37:39,135", - "created": 1580240259.1356404, + "asctime": "2020-12-21 01:18:52,065", + "created": 1608509932.0650856, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -6786,15 +6801,15 @@ "lineno": 36, "message": "Passing \"Log entry number 4 with level ERROR.\" to collectingRingHandler.", "module": "test_helpers", - "msecs": 135.64038276672363, + "msecs": 65.08564949035645, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 81.26020431518555, + "relativeCreated": 67.718505859375, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -6803,8 +6818,8 @@ "CRITICAL", "collectingRingHandler" ], - "asctime": "2020-01-28 20:37:39,135", - "created": 1580240259.1357477, + "asctime": "2020-12-21 01:18:52,065", + "created": 1608509932.0651982, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -6814,15 +6829,15 @@ "lineno": 36, "message": "Passing \"Log entry number 5 with level CRITICAL.\" to collectingRingHandler.", "module": "test_helpers", - "msecs": 135.74767112731934, + "msecs": 65.19818305969238, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 81.36749267578125, + "relativeCreated": 67.83103942871094, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -6831,8 +6846,8 @@ "INFO", "collectingRingHandler" ], - "asctime": "2020-01-28 20:37:39,135", - "created": 1580240259.1358516, + "asctime": "2020-12-21 01:18:52,065", + "created": 1608509932.0653098, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -6842,15 +6857,15 @@ "lineno": 36, "message": "Passing \"Log entry number 6 with level INFO.\" to collectingRingHandler.", "module": "test_helpers", - "msecs": 135.85162162780762, + "msecs": 65.30976295471191, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 81.47144317626953, + "relativeCreated": 67.94261932373047, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -6859,8 +6874,8 @@ "ERROR", "collectingRingHandler" ], - "asctime": "2020-01-28 20:37:39,135", - "created": 1580240259.1359997, + "asctime": "2020-12-21 01:18:52,065", + "created": 1608509932.0654137, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -6870,34 +6885,34 @@ "lineno": 36, "message": "Passing \"Log entry number 7 with level ERROR.\" to collectingRingHandler.", "module": "test_helpers", - "msecs": 135.9996795654297, + "msecs": 65.4137134552002, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 81.6195011138916, + "relativeCreated": 68.04656982421875, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" } ], - "msecs": 136.10315322875977, + "msecs": 65.51837921142578, "msg": "Running logger test sequence.", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 81.72297477722168, + "relativeCreated": 68.15123558044434, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread", - "time_consumption": 0.00010347366333007812 + "time_consumption": 0.00010466575622558594 }, { "args": [], - "asctime": "2020-01-28 20:37:39,136", - "created": 1580240259.13682, + "asctime": "2020-12-21 01:18:52,066", + "created": 1608509932.0662718, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6914,8 +6929,8 @@ "[ 51, 139, 228, 316, 401 ]", "" ], - "asctime": "2020-01-28 20:37:39,136", - "created": 1580240259.1361997, + "asctime": "2020-12-21 01:18:52,065", + "created": 1608509932.0656168, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6925,15 +6940,15 @@ "lineno": 22, "message": "Result (Indexlist of log entries in stringrepresentation): [ 51, 139, 228, 316, 401 ] ()", "module": "test", - "msecs": 136.1997127532959, + "msecs": 65.61684608459473, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 81.81953430175781, + "relativeCreated": 68.24970245361328, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -6942,8 +6957,8 @@ "[ 51, 139, 228, 316, 401 ]", "" ], - "asctime": "2020-01-28 20:37:39,136", - "created": 1580240259.1362443, + "asctime": "2020-12-21 01:18:52,065", + "created": 1608509932.0656607, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6953,15 +6968,15 @@ "lineno": 26, "message": "Expectation (Indexlist of log entries in stringrepresentation): result = [ 51, 139, 228, 316, 401 ] ()", "module": "test", - "msecs": 136.2442970275879, + "msecs": 65.66071510314941, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 81.8641185760498, + "relativeCreated": 68.29357147216797, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -6970,8 +6985,8 @@ "51", "" ], - "asctime": "2020-01-28 20:37:39,136", - "created": 1580240259.1362836, + "asctime": "2020-12-21 01:18:52,065", + "created": 1608509932.0656998, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6981,15 +6996,15 @@ "lineno": 22, "message": "Result (Submitted value number 1): 51 ()", "module": "test", - "msecs": 136.28363609313965, + "msecs": 65.69981575012207, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 81.90345764160156, + "relativeCreated": 68.33267211914062, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -6998,8 +7013,8 @@ "51", "" ], - "asctime": "2020-01-28 20:37:39,136", - "created": 1580240259.1363237, + "asctime": "2020-12-21 01:18:52,065", + "created": 1608509932.0657349, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7009,15 +7024,15 @@ "lineno": 26, "message": "Expectation (Submitted value number 1): result = 51 ()", "module": "test", - "msecs": 136.3236904144287, + "msecs": 65.73486328125, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 81.94351196289062, + "relativeCreated": 68.36771965026855, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -7025,8 +7040,8 @@ "51", "" ], - "asctime": "2020-01-28 20:37:39,136", - "created": 1580240259.1363597, + "asctime": "2020-12-21 01:18:52,065", + "created": 1608509932.0657735, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7036,15 +7051,15 @@ "lineno": 142, "message": "Submitted value number 1 is correct (Content 51 and Type is ).", "module": "test", - "msecs": 136.35969161987305, + "msecs": 65.77348709106445, "msg": "Submitted value number 1 is correct (Content %s and Type is %s).", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 81.97951316833496, + "relativeCreated": 68.40634346008301, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -7053,8 +7068,8 @@ "139", "" ], - "asctime": "2020-01-28 20:37:39,136", - "created": 1580240259.136399, + "asctime": "2020-12-21 01:18:52,065", + "created": 1608509932.065815, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7064,15 +7079,15 @@ "lineno": 22, "message": "Result (Submitted value number 2): 139 ()", "module": "test", - "msecs": 136.3990306854248, + "msecs": 65.81497192382812, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 82.01885223388672, + "relativeCreated": 68.44782829284668, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -7081,8 +7096,8 @@ "139", "" ], - "asctime": "2020-01-28 20:37:39,136", - "created": 1580240259.1364334, + "asctime": "2020-12-21 01:18:52,065", + "created": 1608509932.0658576, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7092,15 +7107,15 @@ "lineno": 26, "message": "Expectation (Submitted value number 2): result = 139 ()", "module": "test", - "msecs": 136.43336296081543, + "msecs": 65.8576488494873, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 82.05318450927734, + "relativeCreated": 68.49050521850586, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -7108,8 +7123,8 @@ "139", "" ], - "asctime": "2020-01-28 20:37:39,136", - "created": 1580240259.136468, + "asctime": "2020-12-21 01:18:52,065", + "created": 1608509932.065893, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7119,15 +7134,15 @@ "lineno": 142, "message": "Submitted value number 2 is correct (Content 139 and Type is ).", "module": "test", - "msecs": 136.46793365478516, + "msecs": 65.89293479919434, "msg": "Submitted value number 2 is correct (Content %s and Type is %s).", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 82.08775520324707, + "relativeCreated": 68.52579116821289, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -7136,8 +7151,8 @@ "228", "" ], - "asctime": "2020-01-28 20:37:39,136", - "created": 1580240259.1365032, + "asctime": "2020-12-21 01:18:52,065", + "created": 1608509932.0659277, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7147,15 +7162,15 @@ "lineno": 22, "message": "Result (Submitted value number 3): 228 ()", "module": "test", - "msecs": 136.5032196044922, + "msecs": 65.92774391174316, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 82.1230411529541, + "relativeCreated": 68.56060028076172, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -7164,8 +7179,8 @@ "228", "" ], - "asctime": "2020-01-28 20:37:39,136", - "created": 1580240259.136544, + "asctime": "2020-12-21 01:18:52,065", + "created": 1608509932.0659719, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7175,15 +7190,15 @@ "lineno": 26, "message": "Expectation (Submitted value number 3): result = 228 ()", "module": "test", - "msecs": 136.54398918151855, + "msecs": 65.97185134887695, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 82.16381072998047, + "relativeCreated": 68.60470771789551, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -7191,8 +7206,8 @@ "228", "" ], - "asctime": "2020-01-28 20:37:39,136", - "created": 1580240259.1365814, + "asctime": "2020-12-21 01:18:52,066", + "created": 1608509932.0660074, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7202,15 +7217,15 @@ "lineno": 142, "message": "Submitted value number 3 is correct (Content 228 and Type is ).", "module": "test", - "msecs": 136.5814208984375, + "msecs": 66.00737571716309, "msg": "Submitted value number 3 is correct (Content %s and Type is %s).", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 82.20124244689941, + "relativeCreated": 68.64023208618164, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -7219,8 +7234,8 @@ "316", "" ], - "asctime": "2020-01-28 20:37:39,136", - "created": 1580240259.1366174, + "asctime": "2020-12-21 01:18:52,066", + "created": 1608509932.066043, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7230,15 +7245,15 @@ "lineno": 22, "message": "Result (Submitted value number 4): 316 ()", "module": "test", - "msecs": 136.61742210388184, + "msecs": 66.04290008544922, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 82.23724365234375, + "relativeCreated": 68.67575645446777, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -7247,8 +7262,8 @@ "316", "" ], - "asctime": "2020-01-28 20:37:39,136", - "created": 1580240259.1366513, + "asctime": "2020-12-21 01:18:52,066", + "created": 1608509932.0660772, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7258,15 +7273,15 @@ "lineno": 26, "message": "Expectation (Submitted value number 4): result = 316 ()", "module": "test", - "msecs": 136.65127754211426, + "msecs": 66.07723236083984, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 82.27109909057617, + "relativeCreated": 68.7100887298584, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -7274,8 +7289,8 @@ "316", "" ], - "asctime": "2020-01-28 20:37:39,136", - "created": 1580240259.1366851, + "asctime": "2020-12-21 01:18:52,066", + "created": 1608509932.0661113, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7285,15 +7300,15 @@ "lineno": 142, "message": "Submitted value number 4 is correct (Content 316 and Type is ).", "module": "test", - "msecs": 136.68513298034668, + "msecs": 66.11132621765137, "msg": "Submitted value number 4 is correct (Content %s and Type is %s).", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 82.3049545288086, + "relativeCreated": 68.74418258666992, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -7302,8 +7317,8 @@ "401", "" ], - "asctime": "2020-01-28 20:37:39,136", - "created": 1580240259.1367197, + "asctime": "2020-12-21 01:18:52,066", + "created": 1608509932.0661612, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7313,15 +7328,15 @@ "lineno": 22, "message": "Result (Submitted value number 5): 401 ()", "module": "test", - "msecs": 136.7197036743164, + "msecs": 66.1611557006836, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 82.33952522277832, + "relativeCreated": 68.79401206970215, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -7330,8 +7345,8 @@ "401", "" ], - "asctime": "2020-01-28 20:37:39,136", - "created": 1580240259.136753, + "asctime": "2020-12-21 01:18:52,066", + "created": 1608509932.0661957, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7341,15 +7356,15 @@ "lineno": 26, "message": "Expectation (Submitted value number 5): result = 401 ()", "module": "test", - "msecs": 136.75308227539062, + "msecs": 66.19572639465332, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 82.37290382385254, + "relativeCreated": 68.82858276367188, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -7357,8 +7372,8 @@ "401", "" ], - "asctime": "2020-01-28 20:37:39,136", - "created": 1580240259.1367867, + "asctime": "2020-12-21 01:18:52,066", + "created": 1608509932.066234, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7368,41 +7383,41 @@ "lineno": 142, "message": "Submitted value number 5 is correct (Content 401 and Type is ).", "module": "test", - "msecs": 136.78669929504395, + "msecs": 66.23411178588867, "msg": "Submitted value number 5 is correct (Content %s and Type is %s).", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 82.40652084350586, + "relativeCreated": 68.86696815490723, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" } ], - "msecs": 136.82007789611816, + "msecs": 66.27178192138672, "msg": "Indexlist of log entries in stringrepresentation: Values and number of submitted values is correct. See detailed log for more information.", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 82.43989944458008, + "relativeCreated": 68.90463829040527, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread", - "time_consumption": 3.337860107421875e-05 + "time_consumption": 3.7670135498046875e-05 } ], - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread", - "time_consumption": 0.0016264915466308594, - "time_finished": "2020-01-28 20:37:39,136", - "time_start": "2020-01-28 20:37:39,135" + "time_consumption": 0.0016667842864990234, + "time_finished": "2020-12-21 01:18:52,066", + "time_start": "2020-12-21 01:18:52,064" }, "_XzMFcHYZEem_kd-7nxt1sg": { "args": null, - "asctime": "2020-01-28 20:37:39,125", - "created": 1580240259.1257718, + "asctime": "2020-12-21 01:18:52,058", + "created": 1608509932.0584853, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -7413,19 +7428,19 @@ "message": "_XzMFcHYZEem_kd-7nxt1sg", "module": "__init__", "moduleLogger": [], - "msecs": 125.77176094055176, + "msecs": 58.48526954650879, "msg": "_XzMFcHYZEem_kd-7nxt1sg", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/report/unittest/src/tests/__init__.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 71.39158248901367, + "relativeCreated": 61.118125915527344, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2020-01-28 20:37:39,126", - "created": 1580240259.126569, + "asctime": "2020-12-21 01:18:52,059", + "created": 1608509932.059336, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -7438,8 +7453,8 @@ "moduleLogger": [ { "args": [], - "asctime": "2020-01-28 20:37:39,125", - "created": 1580240259.1259592, + "asctime": "2020-12-21 01:18:52,058", + "created": 1608509932.0586987, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -7449,15 +7464,15 @@ "lineno": 22, "message": "Configuring collecting logger", "module": "test_helpers", - "msecs": 125.95915794372559, + "msecs": 58.69865417480469, "msg": "Configuring collecting logger", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 71.5789794921875, + "relativeCreated": 61.33151054382324, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -7466,8 +7481,8 @@ "DEBUG", "collectingHandler" ], - "asctime": "2020-01-28 20:37:39,126", - "created": 1580240259.1260376, + "asctime": "2020-12-21 01:18:52,058", + "created": 1608509932.0587864, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -7477,15 +7492,15 @@ "lineno": 36, "message": "Passing \"Log entry number 1 with level DEBUG.\" to collectingHandler.", "module": "test_helpers", - "msecs": 126.03759765625, + "msecs": 58.78639221191406, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 71.65741920471191, + "relativeCreated": 61.41924858093262, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -7494,8 +7509,8 @@ "INFO", "collectingHandler" ], - "asctime": "2020-01-28 20:37:39,126", - "created": 1580240259.1261303, + "asctime": "2020-12-21 01:18:52,058", + "created": 1608509932.0588872, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -7505,15 +7520,15 @@ "lineno": 36, "message": "Passing \"Log entry number 2 with level INFO.\" to collectingHandler.", "module": "test_helpers", - "msecs": 126.13034248352051, + "msecs": 58.88724327087402, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 71.75016403198242, + "relativeCreated": 61.52009963989258, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -7522,8 +7537,8 @@ "WARNING", "collectingHandler" ], - "asctime": "2020-01-28 20:37:39,126", - "created": 1580240259.1262052, + "asctime": "2020-12-21 01:18:52,058", + "created": 1608509932.0589712, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -7533,15 +7548,15 @@ "lineno": 36, "message": "Passing \"Log entry number 3 with level WARNING.\" to collectingHandler.", "module": "test_helpers", - "msecs": 126.2052059173584, + "msecs": 58.97116661071777, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 71.82502746582031, + "relativeCreated": 61.60402297973633, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -7550,8 +7565,8 @@ "ERROR", "collectingHandler" ], - "asctime": "2020-01-28 20:37:39,126", - "created": 1580240259.1262753, + "asctime": "2020-12-21 01:18:52,059", + "created": 1608509932.059048, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -7561,15 +7576,15 @@ "lineno": 36, "message": "Passing \"Log entry number 4 with level ERROR.\" to collectingHandler.", "module": "test_helpers", - "msecs": 126.27530097961426, + "msecs": 59.04793739318848, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 71.89512252807617, + "relativeCreated": 61.68079376220703, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -7578,8 +7593,8 @@ "CRITICAL", "collectingHandler" ], - "asctime": "2020-01-28 20:37:39,126", - "created": 1580240259.1263452, + "asctime": "2020-12-21 01:18:52,059", + "created": 1608509932.0591207, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -7589,15 +7604,15 @@ "lineno": 36, "message": "Passing \"Log entry number 5 with level CRITICAL.\" to collectingHandler.", "module": "test_helpers", - "msecs": 126.34515762329102, + "msecs": 59.12065505981445, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 71.96497917175293, + "relativeCreated": 61.75351142883301, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -7606,8 +7621,8 @@ "INFO", "collectingHandler" ], - "asctime": "2020-01-28 20:37:39,126", - "created": 1580240259.126418, + "asctime": "2020-12-21 01:18:52,059", + "created": 1608509932.0591927, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -7617,15 +7632,15 @@ "lineno": 36, "message": "Passing \"Log entry number 6 with level INFO.\" to collectingHandler.", "module": "test_helpers", - "msecs": 126.4181137084961, + "msecs": 59.192657470703125, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 72.03793525695801, + "relativeCreated": 61.82551383972168, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -7634,8 +7649,8 @@ "ERROR", "collectingHandler" ], - "asctime": "2020-01-28 20:37:39,126", - "created": 1580240259.1264875, + "asctime": "2020-12-21 01:18:52,059", + "created": 1608509932.0592654, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -7645,37 +7660,37 @@ "lineno": 36, "message": "Passing \"Log entry number 7 with level ERROR.\" to collectingHandler.", "module": "test_helpers", - "msecs": 126.48749351501465, + "msecs": 59.2653751373291, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 72.10731506347656, + "relativeCreated": 61.898231506347656, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" } ], - "msecs": 126.56903266906738, + "msecs": 59.335947036743164, "msg": "Running logger test sequence.", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 72.1888542175293, + "relativeCreated": 61.96880340576172, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread", - "time_consumption": 8.153915405273438e-05 + "time_consumption": 7.05718994140625e-05 }, { "args": [ "7", "" ], - "asctime": "2020-01-28 20:37:39,126", - "created": 1580240259.126833, + "asctime": "2020-12-21 01:18:52,059", + "created": 1608509932.0595024, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7692,8 +7707,8 @@ "7", "" ], - "asctime": "2020-01-28 20:37:39,126", - "created": 1580240259.1266782, + "asctime": "2020-12-21 01:18:52,059", + "created": 1608509932.0594208, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7703,15 +7718,15 @@ "lineno": 22, "message": "Result (Length of collected logs): 7 ()", "module": "test", - "msecs": 126.6782283782959, + "msecs": 59.42082405090332, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 72.29804992675781, + "relativeCreated": 62.053680419921875, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -7720,8 +7735,8 @@ "7", "" ], - "asctime": "2020-01-28 20:37:39,126", - "created": 1580240259.1267571, + "asctime": "2020-12-21 01:18:52,059", + "created": 1608509932.0594592, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7731,37 +7746,37 @@ "lineno": 26, "message": "Expectation (Length of collected logs): result = 7 ()", "module": "test", - "msecs": 126.75714492797852, + "msecs": 59.45920944213867, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 72.37696647644043, + "relativeCreated": 62.09206581115723, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" } ], - "msecs": 126.83296203613281, + "msecs": 59.502363204956055, "msg": "Length of collected logs is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 72.45278358459473, + "relativeCreated": 62.13521957397461, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread", - "time_consumption": 7.581710815429688e-05 + "time_consumption": 4.315376281738281e-05 }, { "args": [ "['Log entry number %d with level %s.', 10, 'test_helpers.py', 1]", "" ], - "asctime": "2020-01-28 20:37:39,127", - "created": 1580240259.1270418, + "asctime": "2020-12-21 01:18:52,059", + "created": 1608509932.059672, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7778,8 +7793,8 @@ "[ 'Log entry number %d with level %s.', 10, 'test_helpers.py', 1 ]", "" ], - "asctime": "2020-01-28 20:37:39,126", - "created": 1580240259.1269083, + "asctime": "2020-12-21 01:18:52,059", + "created": 1608509932.0595753, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7789,15 +7804,15 @@ "lineno": 22, "message": "Result (Logged information): [ 'Log entry number %d with level %s.', 10, 'test_helpers.py', 1 ] ()", "module": "test", - "msecs": 126.9083023071289, + "msecs": 59.57531929016113, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 72.52812385559082, + "relativeCreated": 62.20817565917969, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -7806,8 +7821,8 @@ "[ 'Log entry number %d with level %s.', 10, 'test_helpers.py', 1 ]", "" ], - "asctime": "2020-01-28 20:37:39,126", - "created": 1580240259.1269681, + "asctime": "2020-12-21 01:18:52,059", + "created": 1608509932.0596173, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7817,37 +7832,37 @@ "lineno": 26, "message": "Expectation (Logged information): result = [ 'Log entry number %d with level %s.', 10, 'test_helpers.py', 1 ] ()", "module": "test", - "msecs": 126.9681453704834, + "msecs": 59.61728096008301, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 72.58796691894531, + "relativeCreated": 62.25013732910156, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" } ], - "msecs": 127.04181671142578, + "msecs": 59.67211723327637, "msg": "Logged information is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 72.6616382598877, + "relativeCreated": 62.30497360229492, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread", - "time_consumption": 7.367134094238281e-05 + "time_consumption": 5.4836273193359375e-05 }, { "args": [ "['Log entry number %d with level %s.', 20, 'test_helpers.py', 2]", "" ], - "asctime": "2020-01-28 20:37:39,127", - "created": 1580240259.127229, + "asctime": "2020-12-21 01:18:52,059", + "created": 1608509932.0598304, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7864,8 +7879,8 @@ "[ 'Log entry number %d with level %s.', 20, 'test_helpers.py', 2 ]", "" ], - "asctime": "2020-01-28 20:37:39,127", - "created": 1580240259.127117, + "asctime": "2020-12-21 01:18:52,059", + "created": 1608509932.0597413, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7875,15 +7890,15 @@ "lineno": 22, "message": "Result (Logged information): [ 'Log entry number %d with level %s.', 20, 'test_helpers.py', 2 ] ()", "module": "test", - "msecs": 127.11691856384277, + "msecs": 59.74125862121582, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 72.73674011230469, + "relativeCreated": 62.374114990234375, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -7892,8 +7907,8 @@ "[ 'Log entry number %d with level %s.', 20, 'test_helpers.py', 2 ]", "" ], - "asctime": "2020-01-28 20:37:39,127", - "created": 1580240259.1271696, + "asctime": "2020-12-21 01:18:52,059", + "created": 1608509932.059782, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7903,37 +7918,37 @@ "lineno": 26, "message": "Expectation (Logged information): result = [ 'Log entry number %d with level %s.', 20, 'test_helpers.py', 2 ] ()", "module": "test", - "msecs": 127.16960906982422, + "msecs": 59.78202819824219, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 72.78943061828613, + "relativeCreated": 62.41488456726074, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" } ], - "msecs": 127.22897529602051, + "msecs": 59.830427169799805, "msg": "Logged information is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 72.84879684448242, + "relativeCreated": 62.46328353881836, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread", - "time_consumption": 5.936622619628906e-05 + "time_consumption": 4.839897155761719e-05 }, { "args": [ "['Log entry number %d with level %s.', 30, 'test_helpers.py', 3]", "" ], - "asctime": "2020-01-28 20:37:39,127", - "created": 1580240259.1274276, + "asctime": "2020-12-21 01:18:52,059", + "created": 1608509932.0599852, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7950,8 +7965,8 @@ "[ 'Log entry number %d with level %s.', 30, 'test_helpers.py', 3 ]", "" ], - "asctime": "2020-01-28 20:37:39,127", - "created": 1580240259.1272998, + "asctime": "2020-12-21 01:18:52,059", + "created": 1608509932.0598974, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7961,15 +7976,15 @@ "lineno": 22, "message": "Result (Logged information): [ 'Log entry number %d with level %s.', 30, 'test_helpers.py', 3 ] ()", "module": "test", - "msecs": 127.29978561401367, + "msecs": 59.897422790527344, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 72.91960716247559, + "relativeCreated": 62.5302791595459, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -7978,8 +7993,8 @@ "[ 'Log entry number %d with level %s.', 30, 'test_helpers.py', 3 ]", "" ], - "asctime": "2020-01-28 20:37:39,127", - "created": 1580240259.1273506, + "asctime": "2020-12-21 01:18:52,059", + "created": 1608509932.0599372, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7989,37 +8004,37 @@ "lineno": 26, "message": "Expectation (Logged information): result = [ 'Log entry number %d with level %s.', 30, 'test_helpers.py', 3 ] ()", "module": "test", - "msecs": 127.3505687713623, + "msecs": 59.937238693237305, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 72.97039031982422, + "relativeCreated": 62.57009506225586, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" } ], - "msecs": 127.42757797241211, + "msecs": 59.98516082763672, "msg": "Logged information is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 73.04739952087402, + "relativeCreated": 62.61801719665527, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread", - "time_consumption": 7.700920104980469e-05 + "time_consumption": 4.792213439941406e-05 }, { "args": [ "['Log entry number %d with level %s.', 40, 'test_helpers.py', 4]", "" ], - "asctime": "2020-01-28 20:37:39,127", - "created": 1580240259.1275878, + "asctime": "2020-12-21 01:18:52,060", + "created": 1608509932.0601492, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8036,8 +8051,8 @@ "[ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 4 ]", "" ], - "asctime": "2020-01-28 20:37:39,127", - "created": 1580240259.1274972, + "asctime": "2020-12-21 01:18:52,060", + "created": 1608509932.060054, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8047,15 +8062,15 @@ "lineno": 22, "message": "Result (Logged information): [ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 4 ] ()", "module": "test", - "msecs": 127.49719619750977, + "msecs": 60.05406379699707, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 73.11701774597168, + "relativeCreated": 62.686920166015625, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -8064,8 +8079,8 @@ "[ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 4 ]", "" ], - "asctime": "2020-01-28 20:37:39,127", - "created": 1580240259.1275387, + "asctime": "2020-12-21 01:18:52,060", + "created": 1608509932.0600991, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8075,37 +8090,37 @@ "lineno": 26, "message": "Expectation (Logged information): result = [ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 4 ] ()", "module": "test", - "msecs": 127.53868103027344, + "msecs": 60.099124908447266, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 73.15850257873535, + "relativeCreated": 62.73198127746582, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" } ], - "msecs": 127.58779525756836, + "msecs": 60.149192810058594, "msg": "Logged information is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 73.20761680603027, + "relativeCreated": 62.78204917907715, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread", - "time_consumption": 4.9114227294921875e-05 + "time_consumption": 5.0067901611328125e-05 }, { "args": [ "['Log entry number %d with level %s.', 50, 'test_helpers.py', 5]", "" ], - "asctime": "2020-01-28 20:37:39,127", - "created": 1580240259.1277378, + "asctime": "2020-12-21 01:18:52,060", + "created": 1608509932.0602982, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8122,8 +8137,8 @@ "[ 'Log entry number %d with level %s.', 50, 'test_helpers.py', 5 ]", "" ], - "asctime": "2020-01-28 20:37:39,127", - "created": 1580240259.1276464, + "asctime": "2020-12-21 01:18:52,060", + "created": 1608509932.060212, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8133,15 +8148,15 @@ "lineno": 22, "message": "Result (Logged information): [ 'Log entry number %d with level %s.', 50, 'test_helpers.py', 5 ] ()", "module": "test", - "msecs": 127.64644622802734, + "msecs": 60.211896896362305, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 73.26626777648926, + "relativeCreated": 62.84475326538086, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -8150,8 +8165,8 @@ "[ 'Log entry number %d with level %s.', 50, 'test_helpers.py', 5 ]", "" ], - "asctime": "2020-01-28 20:37:39,127", - "created": 1580240259.1276865, + "asctime": "2020-12-21 01:18:52,060", + "created": 1608509932.0602517, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8161,37 +8176,37 @@ "lineno": 26, "message": "Expectation (Logged information): result = [ 'Log entry number %d with level %s.', 50, 'test_helpers.py', 5 ] ()", "module": "test", - "msecs": 127.6865005493164, + "msecs": 60.251712799072266, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 73.30632209777832, + "relativeCreated": 62.88456916809082, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" } ], - "msecs": 127.73776054382324, + "msecs": 60.29820442199707, "msg": "Logged information is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 73.35758209228516, + "relativeCreated": 62.931060791015625, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread", - "time_consumption": 5.125999450683594e-05 + "time_consumption": 4.649162292480469e-05 }, { "args": [ "['Log entry number %d with level %s.', 20, 'test_helpers.py', 6]", "" ], - "asctime": "2020-01-28 20:37:39,127", - "created": 1580240259.127887, + "asctime": "2020-12-21 01:18:52,060", + "created": 1608509932.0604484, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8208,8 +8223,8 @@ "[ 'Log entry number %d with level %s.', 20, 'test_helpers.py', 6 ]", "" ], - "asctime": "2020-01-28 20:37:39,127", - "created": 1580240259.1277955, + "asctime": "2020-12-21 01:18:52,060", + "created": 1608509932.0603626, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8219,15 +8234,15 @@ "lineno": 22, "message": "Result (Logged information): [ 'Log entry number %d with level %s.', 20, 'test_helpers.py', 6 ] ()", "module": "test", - "msecs": 127.79545783996582, + "msecs": 60.36257743835449, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 73.41527938842773, + "relativeCreated": 62.99543380737305, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -8236,8 +8251,8 @@ "[ 'Log entry number %d with level %s.', 20, 'test_helpers.py', 6 ]", "" ], - "asctime": "2020-01-28 20:37:39,127", - "created": 1580240259.1278353, + "asctime": "2020-12-21 01:18:52,060", + "created": 1608509932.0604017, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8247,37 +8262,37 @@ "lineno": 26, "message": "Expectation (Logged information): result = [ 'Log entry number %d with level %s.', 20, 'test_helpers.py', 6 ] ()", "module": "test", - "msecs": 127.83527374267578, + "msecs": 60.40167808532715, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 73.4550952911377, + "relativeCreated": 63.0345344543457, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" } ], - "msecs": 127.88701057434082, + "msecs": 60.448408126831055, "msg": "Logged information is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 73.50683212280273, + "relativeCreated": 63.08126449584961, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread", - "time_consumption": 5.173683166503906e-05 + "time_consumption": 4.673004150390625e-05 }, { "args": [ "['Log entry number %d with level %s.', 40, 'test_helpers.py', 7]", "" ], - "asctime": "2020-01-28 20:37:39,128", - "created": 1580240259.1281562, + "asctime": "2020-12-21 01:18:52,060", + "created": 1608509932.0606034, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8294,8 +8309,8 @@ "[ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 7 ]", "" ], - "asctime": "2020-01-28 20:37:39,127", - "created": 1580240259.1279938, + "asctime": "2020-12-21 01:18:52,060", + "created": 1608509932.0605173, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8305,15 +8320,15 @@ "lineno": 22, "message": "Result (Logged information): [ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 7 ] ()", "module": "test", - "msecs": 127.99382209777832, + "msecs": 60.517311096191406, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 73.61364364624023, + "relativeCreated": 63.15016746520996, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -8322,8 +8337,8 @@ "[ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 7 ]", "" ], - "asctime": "2020-01-28 20:37:39,128", - "created": 1580240259.12807, + "asctime": "2020-12-21 01:18:52,060", + "created": 1608509932.0605571, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8333,41 +8348,41 @@ "lineno": 26, "message": "Expectation (Logged information): result = [ 'Log entry number %d with level %s.', 40, 'test_helpers.py', 7 ] ()", "module": "test", - "msecs": 128.07011604309082, + "msecs": 60.55712699890137, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 73.68993759155273, + "relativeCreated": 63.18998336791992, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" } ], - "msecs": 128.15618515014648, + "msecs": 60.60338020324707, "msg": "Logged information is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 73.7760066986084, + "relativeCreated": 63.236236572265625, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread", - "time_consumption": 8.606910705566406e-05 + "time_consumption": 4.6253204345703125e-05 } ], - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread", - "time_consumption": 0.0023844242095947266, - "time_finished": "2020-01-28 20:37:39,128", - "time_start": "2020-01-28 20:37:39,125" + "time_consumption": 0.0021181106567382812, + "time_finished": "2020-12-21 01:18:52,060", + "time_start": "2020-12-21 01:18:52,058" }, "_fW5s8CzQEeqYsdFh5Cd6ng": { "args": null, - "asctime": "2020-01-28 20:37:39,136", - "created": 1580240259.136929, + "asctime": "2020-12-21 01:18:52,066", + "created": 1608509932.0664039, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -8378,19 +8393,19 @@ "message": "_fW5s8CzQEeqYsdFh5Cd6ng", "module": "__init__", "moduleLogger": [], - "msecs": 136.92903518676758, + "msecs": 66.40386581420898, "msg": "_fW5s8CzQEeqYsdFh5Cd6ng", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/report/unittest/src/tests/__init__.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 82.54885673522949, + "relativeCreated": 69.03672218322754, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2020-01-28 20:37:39,137", - "created": 1580240259.1378899, + "asctime": "2020-12-21 01:18:52,067", + "created": 1608509932.0675697, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -8403,8 +8418,8 @@ "moduleLogger": [ { "args": [], - "asctime": "2020-01-28 20:37:39,136", - "created": 1580240259.1369874, + "asctime": "2020-12-21 01:18:52,066", + "created": 1608509932.0664656, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -8414,15 +8429,15 @@ "lineno": 22, "message": "Configuring collecting logger", "module": "test_helpers", - "msecs": 136.98744773864746, + "msecs": 66.46561622619629, "msg": "Configuring collecting logger", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 82.60726928710938, + "relativeCreated": 69.09847259521484, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -8431,8 +8446,8 @@ "DEBUG", "collectingRingHandler" ], - "asctime": "2020-01-28 20:37:39,137", - "created": 1580240259.1370447, + "asctime": "2020-12-21 01:18:52,066", + "created": 1608509932.0665395, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -8442,15 +8457,15 @@ "lineno": 36, "message": "Passing \"Log entry number 1 with level DEBUG.\" to collectingRingHandler.", "module": "test_helpers", - "msecs": 137.04466819763184, + "msecs": 66.53952598571777, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 82.66448974609375, + "relativeCreated": 69.17238235473633, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -8459,8 +8474,8 @@ "INFO", "collectingRingHandler" ], - "asctime": "2020-01-28 20:37:39,137", - "created": 1580240259.137171, + "asctime": "2020-12-21 01:18:52,066", + "created": 1608509932.0666814, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -8470,15 +8485,15 @@ "lineno": 36, "message": "Passing \"Log entry number 2 with level INFO.\" to collectingRingHandler.", "module": "test_helpers", - "msecs": 137.17103004455566, + "msecs": 66.6813850402832, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 82.79085159301758, + "relativeCreated": 69.31424140930176, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -8487,8 +8502,8 @@ "WARNING", "collectingRingHandler" ], - "asctime": "2020-01-28 20:37:39,137", - "created": 1580240259.1372938, + "asctime": "2020-12-21 01:18:52,066", + "created": 1608509932.0668066, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -8498,15 +8513,15 @@ "lineno": 36, "message": "Passing \"Log entry number 3 with level WARNING.\" to collectingRingHandler.", "module": "test_helpers", - "msecs": 137.29381561279297, + "msecs": 66.80655479431152, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 82.91363716125488, + "relativeCreated": 69.43941116333008, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -8515,8 +8530,8 @@ "ERROR", "collectingRingHandler" ], - "asctime": "2020-01-28 20:37:39,137", - "created": 1580240259.1374152, + "asctime": "2020-12-21 01:18:52,066", + "created": 1608509932.0669293, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -8526,15 +8541,15 @@ "lineno": 36, "message": "Passing \"Log entry number 4 with level ERROR.\" to collectingRingHandler.", "module": "test_helpers", - "msecs": 137.41517066955566, + "msecs": 66.92934036254883, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 83.03499221801758, + "relativeCreated": 69.56219673156738, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -8543,8 +8558,8 @@ "CRITICAL", "collectingRingHandler" ], - "asctime": "2020-01-28 20:37:39,137", - "created": 1580240259.1375365, + "asctime": "2020-12-21 01:18:52,067", + "created": 1608509932.0670533, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -8554,15 +8569,15 @@ "lineno": 36, "message": "Passing \"Log entry number 5 with level CRITICAL.\" to collectingRingHandler.", "module": "test_helpers", - "msecs": 137.53652572631836, + "msecs": 67.05331802368164, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 83.15634727478027, + "relativeCreated": 69.6861743927002, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -8571,8 +8586,8 @@ "INFO", "collectingRingHandler" ], - "asctime": "2020-01-28 20:37:39,137", - "created": 1580240259.1376586, + "asctime": "2020-12-21 01:18:52,067", + "created": 1608509932.0671873, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -8582,15 +8597,15 @@ "lineno": 36, "message": "Passing \"Log entry number 6 with level INFO.\" to collectingRingHandler.", "module": "test_helpers", - "msecs": 137.65859603881836, + "msecs": 67.18730926513672, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 83.27841758728027, + "relativeCreated": 69.82016563415527, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -8599,8 +8614,8 @@ "ERROR", "collectingRingHandler" ], - "asctime": "2020-01-28 20:37:39,137", - "created": 1580240259.1377747, + "asctime": "2020-12-21 01:18:52,067", + "created": 1608509932.0673254, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -8610,37 +8625,37 @@ "lineno": 36, "message": "Passing \"Log entry number 7 with level ERROR.\" to collectingRingHandler.", "module": "test_helpers", - "msecs": 137.77470588684082, + "msecs": 67.32535362243652, "msg": "Passing \"Log entry number %d with level %s.\" to %s.", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 83.39452743530273, + "relativeCreated": 69.95820999145508, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" } ], - "msecs": 137.88986206054688, + "msecs": 67.56973266601562, "msg": "Running logger test sequence.", "name": "__tLogger__", "pathname": "src/tests/test_helpers.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 83.50968360900879, + "relativeCreated": 70.20258903503418, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread", - "time_consumption": 0.00011515617370605469 + "time_consumption": 0.00024437904357910156 }, { "args": [ "5", "" ], - "asctime": "2020-01-28 20:37:39,138", - "created": 1580240259.1380298, + "asctime": "2020-12-21 01:18:52,067", + "created": 1608509932.0679326, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8657,8 +8672,8 @@ "5", "" ], - "asctime": "2020-01-28 20:37:39,137", - "created": 1580240259.137956, + "asctime": "2020-12-21 01:18:52,067", + "created": 1608509932.0677764, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8668,15 +8683,15 @@ "lineno": 22, "message": "Result (Length of collectingRingHandler): 5 ()", "module": "test", - "msecs": 137.955904006958, + "msecs": 67.77644157409668, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 83.57572555541992, + "relativeCreated": 70.40929794311523, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -8685,8 +8700,8 @@ "5", "" ], - "asctime": "2020-01-28 20:37:39,137", - "created": 1580240259.1379936, + "asctime": "2020-12-21 01:18:52,067", + "created": 1608509932.0678587, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8696,37 +8711,37 @@ "lineno": 26, "message": "Expectation (Length of collectingRingHandler): result = 5 ()", "module": "test", - "msecs": 137.99357414245605, + "msecs": 67.85869598388672, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 83.61339569091797, + "relativeCreated": 70.49155235290527, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" } ], - "msecs": 138.0298137664795, + "msecs": 67.9326057434082, "msg": "Length of collectingRingHandler is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 83.6496353149414, + "relativeCreated": 70.56546211242676, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread", - "time_consumption": 3.62396240234375e-05 + "time_consumption": 7.390975952148438e-05 }, { "args": [ "3", "" ], - "asctime": "2020-01-28 20:37:39,138", - "created": 1580240259.1381686, + "asctime": "2020-12-21 01:18:52,068", + "created": 1608509932.0682306, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8743,8 +8758,8 @@ "3", "" ], - "asctime": "2020-01-28 20:37:39,138", - "created": 1580240259.1380959, + "asctime": "2020-12-21 01:18:52,068", + "created": 1608509932.0680811, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8754,15 +8769,15 @@ "lineno": 22, "message": "Result (Length of collectingRingHandler after reinitialisation): 3 ()", "module": "test", - "msecs": 138.09585571289062, + "msecs": 68.08114051818848, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 83.71567726135254, + "relativeCreated": 70.71399688720703, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -8771,8 +8786,8 @@ "3", "" ], - "asctime": "2020-01-28 20:37:39,138", - "created": 1580240259.138133, + "asctime": "2020-12-21 01:18:52,068", + "created": 1608509932.068151, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8782,37 +8797,37 @@ "lineno": 26, "message": "Expectation (Length of collectingRingHandler after reinitialisation): result = 3 ()", "module": "test", - "msecs": 138.13304901123047, + "msecs": 68.15099716186523, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 83.75287055969238, + "relativeCreated": 70.78385353088379, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" } ], - "msecs": 138.1685733795166, + "msecs": 68.23062896728516, "msg": "Length of collectingRingHandler after reinitialisation is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 83.78839492797852, + "relativeCreated": 70.86348533630371, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread", - "time_consumption": 3.552436828613281e-05 + "time_consumption": 7.963180541992188e-05 }, { "args": [ "'Log entry number 5 with level CRITICAL.'", "" ], - "asctime": "2020-01-28 20:37:39,138", - "created": 1580240259.138319, + "asctime": "2020-12-21 01:18:52,068", + "created": 1608509932.068603, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8829,8 +8844,8 @@ "'Log entry number 5 with level CRITICAL.'", "" ], - "asctime": "2020-01-28 20:37:39,138", - "created": 1580240259.1382415, + "asctime": "2020-12-21 01:18:52,068", + "created": 1608509932.0684037, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8840,15 +8855,15 @@ "lineno": 22, "message": "Result (Log text): 'Log entry number 5 with level CRITICAL.' ()", "module": "test", - "msecs": 138.24152946472168, + "msecs": 68.40372085571289, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 83.8613510131836, + "relativeCreated": 71.03657722473145, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -8857,8 +8872,8 @@ "'Log entry number 5 with level CRITICAL.'", "" ], - "asctime": "2020-01-28 20:37:39,138", - "created": 1580240259.138279, + "asctime": "2020-12-21 01:18:52,068", + "created": 1608509932.0684903, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8868,37 +8883,37 @@ "lineno": 26, "message": "Expectation (Log text): result = 'Log entry number 5 with level CRITICAL.' ()", "module": "test", - "msecs": 138.27896118164062, + "msecs": 68.49026679992676, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 83.89878273010254, + "relativeCreated": 71.12312316894531, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" } ], - "msecs": 138.3190155029297, + "msecs": 68.6030387878418, "msg": "Log text is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 83.9388370513916, + "relativeCreated": 71.23589515686035, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread", - "time_consumption": 4.00543212890625e-05 + "time_consumption": 0.00011277198791503906 }, { "args": [ "'Log entry number 6 with level INFO.'", "" ], - "asctime": "2020-01-28 20:37:39,138", - "created": 1580240259.1384428, + "asctime": "2020-12-21 01:18:52,069", + "created": 1608509932.0690293, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8915,8 +8930,8 @@ "'Log entry number 6 with level INFO.'", "" ], - "asctime": "2020-01-28 20:37:39,138", - "created": 1580240259.138372, + "asctime": "2020-12-21 01:18:52,068", + "created": 1608509932.0688832, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8926,15 +8941,15 @@ "lineno": 22, "message": "Result (Log text): 'Log entry number 6 with level INFO.' ()", "module": "test", - "msecs": 138.37194442749023, + "msecs": 68.88318061828613, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 83.99176597595215, + "relativeCreated": 71.51603698730469, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -8943,8 +8958,8 @@ "'Log entry number 6 with level INFO.'", "" ], - "asctime": "2020-01-28 20:37:39,138", - "created": 1580240259.1384077, + "asctime": "2020-12-21 01:18:52,068", + "created": 1608509932.0689678, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8954,37 +8969,37 @@ "lineno": 26, "message": "Expectation (Log text): result = 'Log entry number 6 with level INFO.' ()", "module": "test", - "msecs": 138.40770721435547, + "msecs": 68.96781921386719, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 84.02752876281738, + "relativeCreated": 71.60067558288574, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" } ], - "msecs": 138.4427547454834, + "msecs": 69.02933120727539, "msg": "Log text is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 84.06257629394531, + "relativeCreated": 71.66218757629395, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread", - "time_consumption": 3.504753112792969e-05 + "time_consumption": 6.151199340820312e-05 }, { "args": [ "'Log entry number 7 with level ERROR.'", "" ], - "asctime": "2020-01-28 20:37:39,138", - "created": 1580240259.1385722, + "asctime": "2020-12-21 01:18:52,069", + "created": 1608509932.0693653, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9001,8 +9016,8 @@ "'Log entry number 7 with level ERROR.'", "" ], - "asctime": "2020-01-28 20:37:39,138", - "created": 1580240259.1384985, + "asctime": "2020-12-21 01:18:52,069", + "created": 1608509932.0692155, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9012,15 +9027,15 @@ "lineno": 22, "message": "Result (Log text): 'Log entry number 7 with level ERROR.' ()", "module": "test", - "msecs": 138.49854469299316, + "msecs": 69.21553611755371, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 84.11836624145508, + "relativeCreated": 71.84839248657227, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" }, { @@ -9029,8 +9044,8 @@ "'Log entry number 7 with level ERROR.'", "" ], - "asctime": "2020-01-28 20:37:39,138", - "created": 1580240259.1385367, + "asctime": "2020-12-21 01:18:52,069", + "created": 1608509932.0692918, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9040,40 +9055,40 @@ "lineno": 26, "message": "Expectation (Log text): result = 'Log entry number 7 with level ERROR.' ()", "module": "test", - "msecs": 138.5366916656494, + "msecs": 69.29183006286621, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 84.15651321411133, + "relativeCreated": 71.92468643188477, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread" } ], - "msecs": 138.57221603393555, + "msecs": 69.36526298522949, "msg": "Log text is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 3487, + "process": 93518, "processName": "MainProcess", - "relativeCreated": 84.19203758239746, + "relativeCreated": 71.99811935424805, "stack_info": null, - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread", - "time_consumption": 3.552436828613281e-05 + "time_consumption": 7.343292236328125e-05 } ], - "thread": 140149057529664, + "thread": 140652267562816, "threadName": "MainThread", - "time_consumption": 0.0016431808471679688, - "time_finished": "2020-01-28 20:37:39,138", - "time_start": "2020-01-28 20:37:39,136" + "time_consumption": 0.002961397171020508, + "time_finished": "2020-12-21 01:18:52,069", + "time_start": "2020-12-21 01:18:52,066" } }, "testrun_id": "p3", - "time_consumption": 0.012189865112304688, + "time_consumption": 0.010282516479492188, "uid_list_sorted": [ "_XzMFcHYZEem_kd-7nxt1sg", "_ErFPoCvVEeqssZLMJF_fcg", diff --git a/_testresults_/unittest.pdf b/_testresults_/unittest.pdf index c3e3e0e..fc05c12 100644 Binary files a/_testresults_/unittest.pdf and b/_testresults_/unittest.pdf differ