#!/usr/bin/env python
# -*- coding: UTF-8 -*-
-import caching
-import logging
-import sys
-import time
+import caching
+import logging
+import sys
+import time
-class test_slow_data ( object ):
+class test_slow_data ( object ):
DATA_VERSION = 0.1
KEY_ONE = '1'
KEY_TWO = '2'
@@ -199,52 +200,52 @@
KEY_FIVE = 'five'
KEYS = [ KEY_ONE , KEY_TWO , KEY_THREE , KEY_FOUR , KEY_FIVE ]
- def data_version ( self ):
+ def data_version ( self ):
return self . DATA_VERSION
- def get ( self , key , default = None ):
+ def get ( self , key , default = None ):
try :
return getattr ( self , f '__ { key } __' )()
except AttributeError :
return default
- def keys ( self ):
+ def keys ( self ):
return self . KEYS
- def uid ( self ):
+ def uid ( self ):
return None
- def print_n_sleep ( self , k ):
+ def print_n_sleep ( self , k ):
sys . stdout . write ( 'slow get executed for %s \n ' % k )
time . sleep ( 3 )
- def __1__ ( self ):
+ def __1__ ( self ):
self . print_n_sleep ( "__1__" )
return 'one'
- def __2__ ( self ):
+ def __2__ ( self ):
self . print_n_sleep ( "__2__" )
return 'two'
- def __three__ ( self ):
+ def __three__ ( self ):
self . print_n_sleep ( "__three__" )
return 'three'
- def __four__ ( self ):
+ def __four__ ( self ):
self . print_n_sleep ( "__four__" )
return 'four'
- def __five__ ( self ):
+ def __five__ ( self ):
self . print_n_sleep ( "__five__" )
return 'five'
-class test_slow_data_cached ( test_slow_data ):
- def __init__ ( self , * args , ** kwargs ) -> None :
+class test_slow_data_cached ( test_slow_data ):
+ def __init__ ( self , * args , ** kwargs ) -> None :
super () . __init__ ( * args , ** kwargs )
self . _cache = caching . property_cache_json ( test_slow_data (), 'cache.json' )
self . _cache . add_source_get_keys ( self . KEY_THREE )
- def get ( self , key , default = None ):
+ def get ( self , key , default = None ):
return self . _cache . get ( key , default )
@@ -268,30 +269,31 @@
Will result on the first execution to the following output (with a long execution time):
Testing property_cache ( json ):
--------------------------------
-2024 - 09 - 22 11 : 01 : 08 , 845 : DEBUG - caching - Cache file does not exists ( yet ) .
-2024 - 09 - 22 11 : 01 : 08 , 846 : DEBUG - caching - cache - file stored ( cache . json )
-2024 - 09 - 22 11 : 01 : 08 , 846 : DEBUG - caching - Loading property for key = '1' from source instance
+2025 - 08 - 14 14 : 59 : 14 , 904 : DEBUG - caching - Cache file does not exists ( yet ) .
+2025 - 08 - 14 14 : 59 : 14 , 904 : DEBUG - caching - Loading property for key = '1' from source instance
slow get executed for __1__
-2024 - 09 - 22 11 : 01 : 11 , 847 : DEBUG - caching - Adding key = 1 , value = one with timestamp = 1726995671 to chache
-2024 - 09 - 22 11 : 01 : 11 , 847 : DEBUG - caching - cache - file stored ( cache . json )
+2025 - 08 - 14 14 : 59 : 17 , 905 : DEBUG - caching - Adding key = 1 , value = one with timestamp = 1755176357 to chache
+2025 - 08 - 14 14 : 59 : 17 , 906 : DEBUG - caching - cache - file stored ( cache . json )
one
-2024 - 09 - 22 11 : 01 : 11 , 848 : DEBUG - caching - Loading property for key = '2' from source instance
+2025 - 08 - 14 14 : 59 : 17 , 906 : DEBUG - caching - Loading property for key = '2' from source instance
slow get executed for __2__
-2024 - 09 - 22 11 : 01 : 14 , 849 : DEBUG - caching - Adding key = 2 , value = two with timestamp = 1726995674 to chache
-2024 - 09 - 22 11 : 01 : 14 , 850 : DEBUG - caching - cache - file stored ( cache . json )
+2025 - 08 - 14 14 : 59 : 20 , 907 : DEBUG - caching - Adding key = 2 , value = two with timestamp = 1755176360 to chache
+2025 - 08 - 14 14 : 59 : 20 , 907 : DEBUG - caching - cache - file stored ( cache . json )
two
-2024 - 09 - 22 11 : 01 : 14 , 850 : DEBUG - caching - Key 'three' is excluded by . add_source_get_keys () . Uncached data will be returned .
+2025 - 08 - 14 14 : 59 : 20 , 908 : DEBUG - caching - Loading property for key = 'three' from source instance
slow get executed for __three__
+2025 - 08 - 14 14 : 59 : 23 , 908 : DEBUG - caching - Adding key = three , value = three with timestamp = 1755176363 to chache
+2025 - 08 - 14 14 : 59 : 23 , 909 : DEBUG - caching - cache - file stored ( cache . json )
three
-2024 - 09 - 22 11 : 01 : 17 , 851 : DEBUG - caching - Loading property for key = 'four' from source instance
+2025 - 08 - 14 14 : 59 : 23 , 909 : DEBUG - caching - Loading property for key = 'four' from source instance
slow get executed for __four__
-2024 - 09 - 22 11 : 01 : 20 , 851 : DEBUG - caching - Adding key = four , value = four with timestamp = 1726995680 to chache
-2024 - 09 - 22 11 : 01 : 20 , 853 : DEBUG - caching - cache - file stored ( cache . json )
+2025 - 08 - 14 14 : 59 : 26 , 910 : DEBUG - caching - Adding key = four , value = four with timestamp = 1755176366 to chache
+2025 - 08 - 14 14 : 59 : 26 , 911 : DEBUG - caching - cache - file stored ( cache . json )
four
-2024 - 09 - 22 11 : 01 : 20 , 854 : DEBUG - caching - Loading property for key = 'five' from source instance
+2025 - 08 - 14 14 : 59 : 26 , 911 : DEBUG - caching - Loading property for key = 'five' from source instance
slow get executed for __five__
-2024 - 09 - 22 11 : 01 : 23 , 854 : DEBUG - caching - Adding key = five , value = five with timestamp = 1726995683 to chache
-2024 - 09 - 22 11 : 01 : 23 , 855 : DEBUG - caching - cache - file stored ( cache . json )
+2025 - 08 - 14 14 : 59 : 29 , 911 : DEBUG - caching - Adding key = five , value = five with timestamp = 1755176369 to chache
+2025 - 08 - 14 14 : 59 : 29 , 912 : DEBUG - caching - cache - file stored ( cache . json )
five
--------------------------------
The execution time was 15.0 s
@@ -300,17 +302,19 @@
With every following execution the time cosumption my by much smaller:
Testing property_cache ( json ):
--------------------------------
-2024 - 09 - 22 11 : 01 : 23 , 983 : DEBUG - caching - Loading properties from cache ( cache . json )
-2024 - 09 - 22 11 : 01 : 23 , 984 : DEBUG - caching - Providing property for '1' from cache
+2025 - 08 - 14 14 : 59 : 30 , 025 : DEBUG - caching - Loading properties from cache ( cache . json )
+2025 - 08 - 14 14 : 59 : 30 , 025 : DEBUG - caching - Providing property for '1' from cache
one
-2024 - 09 - 22 11 : 01 : 23 , 984 : DEBUG - caching - Providing property for '2' from cache
+2025 - 08 - 14 14 : 59 : 30 , 025 : DEBUG - caching - Providing property for '2' from cache
two
-2024 - 09 - 22 11 : 01 : 23 , 984 : DEBUG - caching - Key 'three' is excluded by . add_source_get_keys () . Uncached data will be returned .
+2025 - 08 - 14 14 : 59 : 30 , 025 : DEBUG - caching - Loading property for key = 'three' from source instance
slow get executed for __three__
+2025 - 08 - 14 14 : 59 : 33 , 027 : DEBUG - caching - Adding key = three , value = three with timestamp = 1755176373 to chache
+2025 - 08 - 14 14 : 59 : 33 , 027 : DEBUG - caching - cache - file stored ( cache . json )
three
-2024 - 09 - 22 11 : 01 : 26 , 984 : DEBUG - caching - Providing property for 'four' from cache
+2025 - 08 - 14 14 : 59 : 33 , 028 : DEBUG - caching - Providing property for 'four' from cache
four
-2024 - 09 - 22 11 : 01 : 26 , 985 : DEBUG - caching - Providing property for 'five' from cache
+2025 - 08 - 14 14 : 59 : 33 , 028 : DEBUG - caching - Providing property for 'five' from cache
five
--------------------------------
The execution time was 3.0 s
@@ -320,7 +324,7 @@
-class caching. property_cache_pickle ( source_instance , cache_filename , load_all_on_init = False , callback_on_data_storage = None , max_age = None , store_on_get = True )
+class caching. property_cache_pickle ( source_instance , cache_filename , load_all_on_init = False , callback_on_data_storage = None , max_age = None , store_on_get = True , return_source_on_none = False )
This class caches the data from a given source_instance . It takes the data from the cache instead of generating the data from the source_instance ,
if the conditions for the cache usage are given.
@@ -359,13 +363,13 @@ if the conditions for the cache usage are given.
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
-import caching
-import logging
-import sys
-import time
+import caching
+import logging
+import sys
+import time
-class test_slow_data ( object ):
+class test_slow_data ( object ):
DATA_VERSION = 0.1
KEY_ONE = '1'
KEY_TWO = '2'
@@ -374,52 +378,52 @@ if the conditions for the cache usage are given.
KEY_FIVE = 'five'
KEYS = [ KEY_ONE , KEY_TWO , KEY_THREE , KEY_FOUR , KEY_FIVE ]
- def data_version ( self ):
+ def data_version ( self ):
return self . DATA_VERSION
- def get ( self , key , default = None ):
+ def get ( self , key , default = None ):
try :
return getattr ( self , f '__ { key } __' )()
except AttributeError :
return default
- def keys ( self ):
+ def keys ( self ):
return self . KEYS
- def uid ( self ):
+ def uid ( self ):
return None
- def print_n_sleep ( self , k ):
+ def print_n_sleep ( self , k ):
sys . stdout . write ( 'slow get executed for %s \n ' % k )
time . sleep ( 3 )
- def __1__ ( self ):
+ def __1__ ( self ):
self . print_n_sleep ( "__1__" )
return 'one'
- def __2__ ( self ):
+ def __2__ ( self ):
self . print_n_sleep ( "__2__" )
return 'two'
- def __three__ ( self ):
+ def __three__ ( self ):
self . print_n_sleep ( "__three__" )
return 'three'
- def __four__ ( self ):
+ def __four__ ( self ):
self . print_n_sleep ( "__four__" )
return 'four'
- def __five__ ( self ):
+ def __five__ ( self ):
self . print_n_sleep ( "__five__" )
return 'five'
-class test_slow_data_cached ( test_slow_data ):
- def __init__ ( self , * args , ** kwargs ) -> None :
+class test_slow_data_cached ( test_slow_data ):
+ def __init__ ( self , * args , ** kwargs ) -> None :
super () . __init__ ( * args , ** kwargs )
self . _cache = caching . property_cache_json ( test_slow_data (), 'cache.pickle' )
self . _cache . add_source_get_keys ( self . KEY_THREE )
- def get ( self , key , default = None ):
+ def get ( self , key , default = None ):
return self . _cache . get ( key , default )
@@ -442,30 +446,31 @@ if the conditions for the cache usage are given.
Will result on the first execution to the following output (with a long execution time):
Testing property_cache ( pickle ):
--------------------------------
-2024 - 09 - 22 11 : 01 : 27 , 126 : DEBUG - caching - Cache file does not exists ( yet ) .
-2024 - 09 - 22 11 : 01 : 27 , 127 : DEBUG - caching - cache - file stored ( cache . pickle )
-2024 - 09 - 22 11 : 01 : 27 , 127 : DEBUG - caching - Loading property for key = '1' from source instance
+2025 - 08 - 14 14 : 59 : 33 , 131 : DEBUG - caching - Cache file does not exists ( yet ) .
+2025 - 08 - 14 14 : 59 : 33 , 131 : DEBUG - caching - Loading property for key = '1' from source instance
slow get executed for __1__
-2024 - 09 - 22 11 : 01 : 30 , 128 : DEBUG - caching - Adding key = 1 , value = one with timestamp = 1726995690 to chache
-2024 - 09 - 22 11 : 01 : 30 , 129 : DEBUG - caching - cache - file stored ( cache . pickle )
+2025 - 08 - 14 14 : 59 : 36 , 133 : DEBUG - caching - Adding key = 1 , value = one with timestamp = 1755176376 to chache
+2025 - 08 - 14 14 : 59 : 36 , 133 : DEBUG - caching - cache - file stored ( cache . pickle )
one
-2024 - 09 - 22 11 : 01 : 30 , 129 : DEBUG - caching - Loading property for key = '2' from source instance
+2025 - 08 - 14 14 : 59 : 36 , 134 : DEBUG - caching - Loading property for key = '2' from source instance
slow get executed for __2__
-2024 - 09 - 22 11 : 01 : 33 , 130 : DEBUG - caching - Adding key = 2 , value = two with timestamp = 1726995693 to chache
-2024 - 09 - 22 11 : 01 : 33 , 131 : DEBUG - caching - cache - file stored ( cache . pickle )
+2025 - 08 - 14 14 : 59 : 39 , 134 : DEBUG - caching - Adding key = 2 , value = two with timestamp = 1755176379 to chache
+2025 - 08 - 14 14 : 59 : 39 , 135 : DEBUG - caching - cache - file stored ( cache . pickle )
two
-2024 - 09 - 22 11 : 01 : 33 , 132 : DEBUG - caching - Key 'three' is excluded by . add_source_get_keys () . Uncached data will be returned .
+2025 - 08 - 14 14 : 59 : 39 , 135 : DEBUG - caching - Loading property for key = 'three' from source instance
slow get executed for __three__
+2025 - 08 - 14 14 : 59 : 42 , 136 : DEBUG - caching - Adding key = three , value = three with timestamp = 1755176382 to chache
+2025 - 08 - 14 14 : 59 : 42 , 136 : DEBUG - caching - cache - file stored ( cache . pickle )
three
-2024 - 09 - 22 11 : 01 : 36 , 133 : DEBUG - caching - Loading property for key = 'four' from source instance
+2025 - 08 - 14 14 : 59 : 42 , 136 : DEBUG - caching - Loading property for key = 'four' from source instance
slow get executed for __four__
-2024 - 09 - 22 11 : 01 : 39 , 134 : DEBUG - caching - Adding key = four , value = four with timestamp = 1726995699 to chache
-2024 - 09 - 22 11 : 01 : 39 , 135 : DEBUG - caching - cache - file stored ( cache . pickle )
+2025 - 08 - 14 14 : 59 : 45 , 137 : DEBUG - caching - Adding key = four , value = four with timestamp = 1755176385 to chache
+2025 - 08 - 14 14 : 59 : 45 , 138 : DEBUG - caching - cache - file stored ( cache . pickle )
four
-2024 - 09 - 22 11 : 01 : 39 , 136 : DEBUG - caching - Loading property for key = 'five' from source instance
+2025 - 08 - 14 14 : 59 : 45 , 138 : DEBUG - caching - Loading property for key = 'five' from source instance
slow get executed for __five__
-2024 - 09 - 22 11 : 01 : 42 , 136 : DEBUG - caching - Adding key = five , value = five with timestamp = 1726995702 to chache
-2024 - 09 - 22 11 : 01 : 42 , 137 : DEBUG - caching - cache - file stored ( cache . pickle )
+2025 - 08 - 14 14 : 59 : 48 , 138 : DEBUG - caching - Adding key = five , value = five with timestamp = 1755176388 to chache
+2025 - 08 - 14 14 : 59 : 48 , 139 : DEBUG - caching - cache - file stored ( cache . pickle )
five
--------------------------------
The execution time was 15.0 s
@@ -474,17 +479,19 @@ if the conditions for the cache usage are given.
With every following execution the time cosumption my by much smaller:
Testing property_cache ( pickle ):
--------------------------------
-2024 - 09 - 22 11 : 01 : 42 , 204 : DEBUG - caching - Loading properties from cache ( cache . pickle )
-2024 - 09 - 22 11 : 01 : 42 , 204 : DEBUG - caching - Providing property for '1' from cache
+2025 - 08 - 14 14 : 59 : 48 , 211 : DEBUG - caching - Loading properties from cache ( cache . pickle )
+2025 - 08 - 14 14 : 59 : 48 , 212 : DEBUG - caching - Providing property for '1' from cache
one
-2024 - 09 - 22 11 : 01 : 42 , 205 : DEBUG - caching - Providing property for '2' from cache
+2025 - 08 - 14 14 : 59 : 48 , 212 : DEBUG - caching - Providing property for '2' from cache
two
-2024 - 09 - 22 11 : 01 : 42 , 205 : DEBUG - caching - Key 'three' is excluded by . add_source_get_keys () . Uncached data will be returned .
+2025 - 08 - 14 14 : 59 : 48 , 212 : DEBUG - caching - Loading property for key = 'three' from source instance
slow get executed for __three__
+2025 - 08 - 14 14 : 59 : 51 , 212 : DEBUG - caching - Adding key = three , value = three with timestamp = 1755176391 to chache
+2025 - 08 - 14 14 : 59 : 51 , 213 : DEBUG - caching - cache - file stored ( cache . pickle )
three
-2024 - 09 - 22 11 : 01 : 45 , 205 : DEBUG - caching - Providing property for 'four' from cache
+2025 - 08 - 14 14 : 59 : 51 , 213 : DEBUG - caching - Providing property for 'four' from cache
four
-2024 - 09 - 22 11 : 01 : 45 , 206 : DEBUG - caching - Providing property for 'five' from cache
+2025 - 08 - 14 14 : 59 : 51 , 214 : DEBUG - caching - Providing property for 'five' from cache
five
--------------------------------
The execution time was 3.0 s
@@ -603,7 +610,7 @@ and the resulting cache will be stored to the given file.
modules |
-
+
Python »
@@ -620,8 +627,8 @@ and the resulting cache will be stored to the given file.
|
@@ -641,24 +648,24 @@ and the resulting cache will be stored to the given file.
diff --git a/_docs_/objects.inv b/_docs_/objects.inv
index d94f04f..e342547 100644
Binary files a/_docs_/objects.inv and b/_docs_/objects.inv differ
diff --git a/_docs_/py-modindex.html b/_docs_/py-modindex.html
index 1c29cd2..301a28f 100644
--- a/_docs_/py-modindex.html
+++ b/_docs_/py-modindex.html
@@ -6,18 +6,19 @@
Python Module Index — caching documentation
-
-
-
+
+
+
+
-
+
-
+
@@ -32,22 +33,22 @@
+ aria-pressed="false" aria-expanded="false" role="button" aria-label="Menu">
-
+
@@ -86,7 +87,7 @@
modules |
-
+
Python »
@@ -103,8 +104,8 @@
|
@@ -175,7 +176,7 @@
modules |
-
+
Python »
@@ -192,8 +193,8 @@
|
@@ -213,24 +214,24 @@
diff --git a/_docs_/search.html b/_docs_/search.html
index 25bbf36..2bd56dc 100644
--- a/_docs_/search.html
+++ b/_docs_/search.html
@@ -6,13 +6,14 @@
Search — caching documentation
-
-
-
+
+
+
+
-
+
@@ -22,7 +23,7 @@
-
+
@@ -32,14 +33,14 @@
+ aria-pressed="false" aria-expanded="false" role="button" aria-label="Menu">
-
+
@@ -69,7 +70,7 @@
modules |
-
+
Python »
@@ -146,7 +147,7 @@
modules |
-
+
Python »
@@ -173,24 +174,24 @@
diff --git a/_docs_/searchindex.js b/_docs_/searchindex.js
index c4b2881..b8f037f 100644
--- a/_docs_/searchindex.js
+++ b/_docs_/searchindex.js
@@ -1 +1 @@
-Search.setIndex({"alltitles": {"Indices and tables": [[0, "indices-and-tables"]], "License for Sphinx": [[4, null], [11, null]], "Licenses for incorporated software": [[4, "licenses-for-incorporated-software"], [11, "licenses-for-incorporated-software"]], "Required properties for the source_instance": [[0, null]], "The MIT License (MIT)": [[3, null], [10, null]], "The cache will be used, if all following conditions are given": [[0, null]], "Welcome to cachings\u2019s documentation!": [[0, null]], "caching (Caching Module)": [[0, "caching-caching-module"]]}, "docnames": ["index", "venv/lib/python3.11/site-packages/MarkupSafe-2.1.5.dist-info/LICENSE", "venv/lib/python3.11/site-packages/alabaster-1.0.0.dist-info/LICENSE", "venv/lib/python3.11/site-packages/imagesize-1.4.1.dist-info/LICENSE", "venv/lib/python3.11/site-packages/sphinx-8.0.2.dist-info/LICENSE", "venv/lib/python3.11/site-packages/sphinx/ext/autosummary/templates/autosummary/base", "venv/lib/python3.11/site-packages/sphinx/ext/autosummary/templates/autosummary/class", "venv/lib/python3.11/site-packages/sphinx/ext/autosummary/templates/autosummary/module", "venv/lib64/python3.11/site-packages/MarkupSafe-2.1.5.dist-info/LICENSE", "venv/lib64/python3.11/site-packages/alabaster-1.0.0.dist-info/LICENSE", "venv/lib64/python3.11/site-packages/imagesize-1.4.1.dist-info/LICENSE", "venv/lib64/python3.11/site-packages/sphinx-8.0.2.dist-info/LICENSE", "venv/lib64/python3.11/site-packages/sphinx/ext/autosummary/templates/autosummary/base", "venv/lib64/python3.11/site-packages/sphinx/ext/autosummary/templates/autosummary/class", "venv/lib64/python3.11/site-packages/sphinx/ext/autosummary/templates/autosummary/module"], "envversion": {"sphinx": 63, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2}, "filenames": ["index.rst", "venv/lib/python3.11/site-packages/MarkupSafe-2.1.5.dist-info/LICENSE.rst", "venv/lib/python3.11/site-packages/alabaster-1.0.0.dist-info/LICENSE.rst", "venv/lib/python3.11/site-packages/imagesize-1.4.1.dist-info/LICENSE.rst", "venv/lib/python3.11/site-packages/sphinx-8.0.2.dist-info/LICENSE.rst", "venv/lib/python3.11/site-packages/sphinx/ext/autosummary/templates/autosummary/base.rst", "venv/lib/python3.11/site-packages/sphinx/ext/autosummary/templates/autosummary/class.rst", "venv/lib/python3.11/site-packages/sphinx/ext/autosummary/templates/autosummary/module.rst", "venv/lib64/python3.11/site-packages/MarkupSafe-2.1.5.dist-info/LICENSE.rst", "venv/lib64/python3.11/site-packages/alabaster-1.0.0.dist-info/LICENSE.rst", "venv/lib64/python3.11/site-packages/imagesize-1.4.1.dist-info/LICENSE.rst", "venv/lib64/python3.11/site-packages/sphinx-8.0.2.dist-info/LICENSE.rst", "venv/lib64/python3.11/site-packages/sphinx/ext/autosummary/templates/autosummary/base.rst", "venv/lib64/python3.11/site-packages/sphinx/ext/autosummary/templates/autosummary/class.rst", "venv/lib64/python3.11/site-packages/sphinx/ext/autosummary/templates/autosummary/module.rst"], "indexentries": {"add_source_get_keys() (caching.property_cache_pickle method)": [[0, "caching.property_cache_pickle.add_source_get_keys", false]], "caching": [[0, "module-caching", false]], "full_update() (caching.property_cache_pickle method)": [[0, "caching.property_cache_pickle.full_update", false]], "get() (caching.property_cache_pickle method)": [[0, "caching.property_cache_pickle.get", false]], "module": [[0, "module-caching", false]], "property_cache_json (class in caching)": [[0, "caching.property_cache_json", false]], "property_cache_pickle (class in caching)": [[0, "caching.property_cache_pickle", false]]}, "objects": {"": [[0, 0, 0, "-", "caching"]], "caching": [[0, 1, 1, "", "property_cache_json"], [0, 1, 1, "", "property_cache_pickle"]], "caching.property_cache_pickle": [[0, 2, 1, "", "add_source_get_keys"], [0, 2, 1, "", "full_update"], [0, 2, 1, "", "get"]]}, "objnames": {"0": ["py", "module", "Python module"], "1": ["py", "class", "Python class"], "2": ["py", "method", "Python method"]}, "objtypes": {"0": "py:module", "1": "py:class", "2": "py:method"}, "terms": {"0": 0, "01": 0, "08": 0, "09": 0, "1": 0, "11": 0, "126": 0, "127": 0, "128": 0, "129": 0, "130": 0, "131": 0, "132": 0, "133": 0, "134": 0, "135": 0, "136": 0, "137": 0, "14": 0, "15": 0, "17": 0, "1726995671": 0, "1726995674": 0, "1726995680": 0, "1726995683": 0, "1726995690": 0, "1726995693": 0, "1726995699": 0, "1726995702": 0, "1f": 0, "2": 0, "20": 0, "2007": [4, 11], "2008": [4, 11], "2010": [1, 2, 8, 9], "2011": [2, 9], "2016": [3, 10], "2020": [2, 9], "2024": [0, 4, 11], "204": 0, "205": 0, "206": 0, "22": 0, "23": 0, "26": 0, "27": 0, "3": 0, "30": 0, "33": 0, "36": 0, "39": 0, "42": 0, "45": 0, "8": 0, "845": 0, "846": 0, "847": 0, "848": 0, "849": 0, "850": 0, "851": 0, "853": 0, "854": 0, "855": 0, "983": 0, "984": 0, "985": 0, "A": [1, 2, 3, 4, 8, 9, 10, 11], "AND": [1, 2, 3, 4, 8, 9, 10, 11], "AS": [1, 2, 3, 4, 8, 9, 10, 11], "BE": [1, 2, 3, 4, 8, 9, 10, 11], "BUT": [1, 2, 3, 4, 8, 9, 10, 11], "BY": [1, 2, 4, 8, 9, 11], "FOR": [1, 2, 3, 4, 8, 9, 10, 11], "IF": [1, 2, 4, 8, 9, 11], "IN": [1, 2, 3, 4, 8, 9, 10, 11], "If": 0, "It": 0, "NO": [1, 2, 3, 4, 8, 9, 10, 11], "NOT": [1, 2, 3, 4, 8, 9, 10, 11], "OF": [1, 2, 3, 4, 8, 9, 10, 11], "ON": [1, 2, 4, 8, 9, 11], "OR": [1, 2, 3, 4, 8, 9, 10, 11], "SUCH": [1, 2, 4, 8, 9, 11], "THE": [1, 2, 3, 4, 8, 9, 10, 11], "TO": [1, 2, 3, 4, 8, 9, 10, 11], "The": [2, 4, 9, 11], "WITH": [3, 10], "Will": 0, "With": 0, "__": 0, "__1__": 0, "__2__": 0, "__five__": 0, "__four__": 0, "__init__": 0, "__main__": 0, "__name__": 0, "__three__": 0, "_cach": 0, "_parse_numpydoc_see_also_sect": [4, 11], "abov": [1, 2, 3, 4, 8, 9, 10, 11], "action": [3, 10], "ad": 0, "add": 0, "add_source_get_kei": 0, "advis": [1, 2, 4, 8, 9, 11], "ag": 0, "alder": 0, "all": [3, 4, 10, 11], "also": 0, "alwai": 0, "an": [3, 10], "ani": [1, 2, 3, 4, 8, 9, 10, 11], "ar": [1, 2, 4, 8, 9, 11], "arg": 0, "argument": 0, "aris": [1, 2, 3, 4, 8, 9, 10, 11], "armin": [2, 9], "asctim": 0, "associ": [3, 10], "attributeerror": 0, "author": [0, 3, 4, 10, 11], "avail": 0, "base": [2, 9], "basicconfig": 0, "been": 0, "below": [4, 11], "between": 0, "bin": 0, "binari": [1, 2, 4, 8, 9, 11], "block": [7, 14], "bool": 0, "bsd": [4, 11], "busi": [1, 2, 4, 8, 9, 11], "c": [2, 4, 9, 11], "cache_filenam": 0, "callback": 0, "callback_on_data_storag": 0, "caus": [1, 2, 4, 8, 9, 11], "chach": 0, "chang": 0, "charg": [3, 10], "checksum": 0, "claim": [3, 10], "class": 0, "claus": [4, 11], "code": [0, 1, 2, 4, 8, 9, 11], "complet": 0, "condit": [1, 2, 3, 4, 8, 9, 10, 11], "configur": 0, "connect": [3, 10], "consequenti": [1, 2, 4, 8, 9, 11], "contract": [1, 2, 3, 4, 8, 9, 10, 11], "contributor": [1, 2, 4, 8, 9, 11], "copi": [3, 10], "copyright": [1, 2, 3, 4, 8, 9, 10, 11], "cosumpt": 0, "current": 0, "damag": [1, 2, 3, 4, 8, 9, 10, 11], "data": [0, 1, 2, 4, 8, 9, 11], "data_vers": 0, "de": 0, "deal": [3, 10], "debug": 0, "def": 0, "default": 0, "der": [4, 11], "deriv": [1, 2, 4, 8, 9, 11], "descript": 0, "detail": 0, "direct": [1, 2, 4, 8, 9, 11], "dirk": 0, "disclaim": [1, 2, 4, 8, 9, 11], "distribut": [1, 2, 3, 4, 8, 9, 10, 11], "do": [3, 10], "document": [1, 2, 3, 4, 8, 9, 10, 11], "doe": 0, "don": 0, "e": 0, "each": 0, "els": 0, "endblock": [7, 14], "endfor": [7, 14], "endif": [7, 14], "endors": [1, 2, 8, 9], "env": 0, "escap": [5, 6, 7, 12, 13, 14], "even": [1, 2, 4, 8, 9, 11], "event": [1, 2, 3, 4, 8, 9, 10, 11], "everi": 0, "exampl": 0, "except": 0, "exclud": 0, "execut": 0, "exemplari": [1, 2, 4, 8, 9, 11], "exist": 0, "express": [1, 2, 3, 4, 8, 9, 10, 11], "f": 0, "fals": 0, "fi": [4, 11], "file": [0, 3, 4, 10, 11], "first": 0, "fit": [1, 2, 3, 4, 8, 9, 10, 11], "five": 0, "float": 0, "follow": [1, 2, 3, 4, 8, 9, 10, 11], "forcier": [2, 9], "form": [1, 2, 4, 8, 9, 11], "format": 0, "four": 0, "free": [3, 10], "from": [0, 1, 2, 3, 4, 8, 9, 10, 11], "full_upd": 0, "fullnam": [5, 6, 7, 12, 13, 14], "function": 0, "furnish": [3, 10], "g": 0, "gener": 0, "get": 0, "getattr": 0, "good": [1, 2, 4, 8, 9, 11], "grant": [3, 10], "had": 0, "herebi": [3, 10], "hold": 0, "holder": [1, 2, 3, 4, 8, 9, 10, 11], "howev": [1, 2, 4, 8, 9, 11], "i": [0, 1, 2, 3, 4, 8, 9, 10, 11], "id": 0, "ident": 0, "iki": [4, 11], "implement": [4, 11], "impli": [1, 2, 3, 4, 8, 9, 10, 11], "import": 0, "improv": 0, "incident": [1, 2, 4, 8, 9, 11], "includ": [1, 2, 3, 4, 8, 9, 10, 11], "increas": 0, "index": 0, "indic": [4, 11], "indirect": [1, 2, 4, 8, 9, 11], "inform": 0, "initialis": 0, "initiallis": 0, "instanc": 0, "instead": 0, "int": 0, "interrupt": [1, 2, 4, 8, 9, 11], "item": [7, 14], "its": [1, 8], "jeff": [2, 9], "json": 0, "k": 0, "kei": 0, "kenneth": [2, 9], "key_fiv": 0, "key_four": 0, "key_on": 0, "key_thre": 0, "key_two": 0, "kind": [3, 10], "kwarg": 0, "less": 0, "level": 0, "levelnam": 0, "liabil": [1, 2, 3, 4, 8, 9, 10, 11], "liabl": [1, 2, 3, 4, 8, 9, 10, 11], "licenc": [4, 11], "limit": [0, 1, 2, 3, 4, 8, 9, 10, 11], "list": [0, 1, 2, 4, 8, 9, 11], "load": 0, "load_all_on_init": 0, "log": 0, "long": 0, "loss": [1, 2, 4, 8, 9, 11], "mai": [1, 2, 8, 9], "materi": [1, 2, 4, 8, 9, 11], "max_ag": 0, "maximum": 0, "mentat": [4, 11], "merchant": [1, 2, 3, 4, 8, 9, 10, 11], "merg": [3, 10], "messag": 0, "met": [1, 2, 4, 8, 9, 11], "method": 0, "mockeri": 0, "modif": [1, 2, 4, 8, 9, 11], "modifi": [3, 10], "modul": [7, 14], "more": 0, "mount": 0, "much": 0, "must": [1, 2, 4, 8, 9, 11], "my": 0, "n": 0, "name": [0, 1, 2, 8, 9], "need": 0, "neglig": [1, 2, 4, 8, 9, 11], "neither": [1, 8], "net": [4, 11], "none": 0, "noninfring": [3, 10], "nor": [1, 8], "notic": [1, 2, 3, 4, 8, 9, 10, 11], "nthe": 0, "number": 0, "numpydocstr": [4, 11], "object": 0, "obtain": [3, 10], "one": 0, "onli": 0, "origin": [2, 9], "other": [0, 1, 2, 3, 4, 8, 9, 10, 11], "otherwis": [1, 2, 3, 4, 8, 9, 10, 11], "out": [1, 2, 3, 4, 8, 9, 10, 11], "output": 0, "owner": [2, 9], "page": 0, "pallet": [1, 8], "paramet": 0, "parent": 0, "particular": [1, 2, 3, 4, 8, 9, 10, 11], "pauli": [4, 11], "pav": [4, 11], "permiss": [1, 2, 3, 8, 9, 10], "permit": [1, 2, 3, 4, 8, 9, 10, 11], "person": [3, 10], "pickl": 0, "portion": [3, 10], "possibl": [1, 2, 4, 8, 9, 11], "prevent": 0, "previou": 0, "print": 0, "print_n_sleep": 0, "prior": [1, 2, 8, 9], "procur": [1, 2, 4, 8, 9, 11], "product": [1, 2, 8, 9], "profit": [1, 2, 4, 8, 9, 11], "project": [4, 11], "promot": [1, 2, 8, 9], "property_cach": 0, "property_cache_json": 0, "property_cache_pickl": 0, "provid": [0, 1, 2, 3, 4, 8, 9, 10, 11], "publish": [3, 10], "purpos": [1, 2, 3, 4, 8, 9, 10, 11], "python": 0, "read": 0, "redistribut": [1, 2, 4, 8, 9, 11], "reitz": [2, 9], "reproduc": [1, 2, 4, 8, 9, 11], "reserv": [2, 4, 9, 11], "restrict": [3, 10], "result": 0, "retain": [1, 2, 4, 8, 9, 11], "return": 0, "right": [2, 3, 4, 9, 10, 11], "ronach": [2, 9], "rubric": [7, 14], "search": 0, "second": 0, "see": [0, 4, 11], "self": 0, "sell": [3, 10], "servic": [1, 2, 4, 8, 9, 11], "shall": [1, 2, 3, 4, 8, 9, 10, 11], "shibukawa": [3, 10], "should": 0, "sleep": 0, "sleep_between_kei": 0, "slow": 0, "smaller": 0, "so": [3, 10], "softwar": [1, 2, 3, 8, 9, 10], "some": [2, 9], "somewher": 0, "sourc": [0, 1, 2, 4, 8, 9, 11], "special": [1, 2, 4, 8, 9, 11], "specif": [1, 2, 8, 9], "stdout": 0, "stefan": [4, 11], "storag": 0, "store": 0, "store_on_get": 0, "str": 0, "stream": 0, "strict": [1, 2, 4, 8, 9, 11], "string": 0, "structur": 0, "subject": [3, 10], "sublicens": [3, 10], "submodul": 0, "substanti": [3, 10], "substitut": [1, 2, 4, 8, 9, 11], "sudo": 0, "super": 0, "support": 0, "sy": 0, "t": 0, "take": 0, "team": [4, 11], "test": 0, "test_slow_data": 0, "test_slow_data_cach": 0, "theme": [2, 9], "theori": [1, 2, 4, 8, 9, 11], "thi": [0, 1, 2, 3, 4, 8, 9, 10, 11], "three": 0, "time": 0, "timestamp": 0, "tm": 0, "tort": [1, 2, 3, 4, 8, 9, 10, 11], "transfer": 0, "true": 0, "try": 0, "tupl": 0, "two": [0, 4, 11], "type": 0, "uid": 0, "uncach": 0, "under": [4, 11], "underlin": [5, 6, 7, 12, 13, 14], "unicod": 0, "uniqu": 0, "unittest": 0, "unless": [4, 11], "us": [1, 2, 3, 4, 8, 9, 10, 11], "usag": 0, "usr": 0, "utf": 0, "valu": 0, "van": [4, 11], "version": 0, "virtanen": [4, 11], "wa": [0, 4, 11], "wai": [1, 2, 4, 8, 9, 11], "walt": [4, 11], "want": 0, "warranti": [1, 2, 3, 4, 8, 9, 10, 11], "when": 0, "where": 0, "whether": [1, 2, 3, 4, 8, 9, 10, 11], "which": 0, "whom": [3, 10], "without": [1, 2, 3, 4, 8, 9, 10, 11], "work": [2, 9], "write": 0, "written": [1, 2, 8, 9], "yet": 0, "yoshiki": [3, 10], "you": 0, "za": [4, 11]}, "titles": ["Welcome to cachings\u2019s documentation!", "<no title>", "<no title>", "The MIT License (MIT)", "License for Sphinx", "<no title>", "<no title>", "<no title>", "<no title>", "<no title>", "The MIT License (MIT)", "License for Sphinx", "<no title>", "<no title>", "<no title>"], "titleterms": {"": 0, "The": [0, 3, 10], "all": 0, "ar": 0, "cach": 0, "condit": 0, "document": 0, "follow": 0, "given": 0, "incorpor": [4, 11], "indic": 0, "licens": [3, 4, 10, 11], "mit": [3, 10], "modul": 0, "properti": 0, "requir": 0, "softwar": [4, 11], "source_inst": 0, "sphinx": [4, 11], "tabl": 0, "us": 0, "welcom": 0}})
\ No newline at end of file
+Search.setIndex({"alltitles":{"1. Copyright and Related Rights.":[[3,"copyright-and-related-rights"],[10,"copyright-and-related-rights"]],"2. Waiver.":[[3,"waiver"],[10,"waiver"]],"3. Public License Fallback.":[[3,"public-license-fallback"],[10,"public-license-fallback"]],"4. Limitations and Disclaimers.":[[3,"limitations-and-disclaimers"],[10,"limitations-and-disclaimers"]],"CC0 1.0 Universal licence":[[3,"cc0-1-0-universal-licence"],[10,"cc0-1-0-universal-licence"]],"Indices and tables":[[0,"indices-and-tables"]],"Licence":[[3,null],[10,null]],"License for Sphinx":[[4,null],[11,null]],"Required properties for the source_instance":[[0,null]],"Statement of Purpose":[[3,"statement-of-purpose"],[10,"statement-of-purpose"]],"The MIT License (MIT)":[[2,null],[9,null]],"The cache will be used, if all following conditions are given":[[0,null]],"Welcome to cachings\u2019s documentation!":[[0,null]],"Zero-Clause BSD Licence":[[3,"zero-clause-bsd-licence"],[10,"zero-clause-bsd-licence"]],"caching (Caching Module)":[[0,"caching-caching-module"]]},"docnames":["index","venv/lib/python3.13/site-packages/alabaster-1.0.0.dist-info/LICENSE","venv/lib/python3.13/site-packages/imagesize-1.4.1.dist-info/LICENSE","venv/lib/python3.13/site-packages/roman_numerals_py-3.1.0.dist-info/licenses/LICENCE","venv/lib/python3.13/site-packages/sphinx-8.2.3.dist-info/licenses/LICENSE","venv/lib/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/base","venv/lib/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/class","venv/lib/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/module","venv/lib64/python3.13/site-packages/alabaster-1.0.0.dist-info/LICENSE","venv/lib64/python3.13/site-packages/imagesize-1.4.1.dist-info/LICENSE","venv/lib64/python3.13/site-packages/roman_numerals_py-3.1.0.dist-info/licenses/LICENCE","venv/lib64/python3.13/site-packages/sphinx-8.2.3.dist-info/licenses/LICENSE","venv/lib64/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/base","venv/lib64/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/class","venv/lib64/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/module"],"envversion":{"sphinx":65,"sphinx.domains.c":3,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":9,"sphinx.domains.index":1,"sphinx.domains.javascript":3,"sphinx.domains.math":2,"sphinx.domains.python":4,"sphinx.domains.rst":2,"sphinx.domains.std":2},"filenames":["index.rst","venv/lib/python3.13/site-packages/alabaster-1.0.0.dist-info/LICENSE.rst","venv/lib/python3.13/site-packages/imagesize-1.4.1.dist-info/LICENSE.rst","venv/lib/python3.13/site-packages/roman_numerals_py-3.1.0.dist-info/licenses/LICENCE.rst","venv/lib/python3.13/site-packages/sphinx-8.2.3.dist-info/licenses/LICENSE.rst","venv/lib/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/base.rst","venv/lib/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/class.rst","venv/lib/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/module.rst","venv/lib64/python3.13/site-packages/alabaster-1.0.0.dist-info/LICENSE.rst","venv/lib64/python3.13/site-packages/imagesize-1.4.1.dist-info/LICENSE.rst","venv/lib64/python3.13/site-packages/roman_numerals_py-3.1.0.dist-info/licenses/LICENCE.rst","venv/lib64/python3.13/site-packages/sphinx-8.2.3.dist-info/licenses/LICENSE.rst","venv/lib64/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/base.rst","venv/lib64/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/class.rst","venv/lib64/python3.13/site-packages/sphinx/ext/autosummary/templates/autosummary/module.rst"],"indexentries":{"add_source_get_keys() (caching.property_cache_pickle method)":[[0,"caching.property_cache_pickle.add_source_get_keys",false]],"caching":[[0,"module-caching",false]],"full_update() (caching.property_cache_pickle method)":[[0,"caching.property_cache_pickle.full_update",false]],"get() (caching.property_cache_pickle method)":[[0,"caching.property_cache_pickle.get",false]],"module":[[0,"module-caching",false]],"property_cache_json (class in caching)":[[0,"caching.property_cache_json",false]],"property_cache_pickle (class in caching)":[[0,"caching.property_cache_pickle",false]]},"objects":{"":[[0,0,0,"-","caching"]],"caching":[[0,1,1,"","property_cache_json"],[0,1,1,"","property_cache_pickle"]],"caching.property_cache_pickle":[[0,2,1,"","add_source_get_keys"],[0,2,1,"","full_update"],[0,2,1,"","get"]]},"objnames":{"0":["py","module","Python module"],"1":["py","class","Python class"],"2":["py","method","Python method"]},"objtypes":{"0":"py:module","1":"py:class","2":"py:method"},"terms":{"":[3,10],"0":0,"025":0,"027":0,"028":0,"08":0,"1":0,"11":[3,10],"131":0,"133":0,"134":0,"135":0,"136":0,"137":0,"138":0,"139":0,"14":0,"15":0,"17":0,"1755176357":0,"1755176360":0,"1755176363":0,"1755176366":0,"1755176369":0,"1755176373":0,"1755176376":0,"1755176379":0,"1755176382":0,"1755176385":0,"1755176388":0,"1755176391":0,"1996":[3,10],"1f":0,"2":0,"20":0,"2007":[4,11],"2010":[1,8],"2011":[1,8],"2016":[2,9],"2020":[1,8],"2024":[3,10],"2025":[0,4,11],"211":0,"212":0,"213":0,"214":0,"23":0,"26":0,"29":0,"3":0,"30":0,"33":0,"36":0,"39":0,"42":0,"45":0,"48":0,"51":0,"59":0,"8":0,"9":[3,10],"904":0,"905":0,"906":0,"907":0,"908":0,"909":0,"910":0,"911":0,"912":0,"96":[3,10],"A":[1,2,3,4,8,9,10,11],"AND":[1,2,3,4,8,9,10,11],"AS":[1,2,3,4,8,9,10,11],"BE":[1,2,3,4,8,9,10,11],"BUT":[1,2,4,8,9,11],"BY":[1,4,8,11],"FOR":[1,2,3,4,8,9,10,11],"For":[3,10],"IF":[1,4,8,11],"IN":[1,2,3,4,8,9,10,11],"If":0,"In":[3,10],"It":0,"NO":[1,2,3,4,8,9,10,11],"NOT":[1,2,4,8,9,11],"No":[3,10],"OF":[1,2,3,4,8,9,10,11],"ON":[1,4,8,11],"OR":[1,2,3,4,8,9,10,11],"SUCH":[1,4,8,11],"THE":[1,2,3,4,8,9,10,11],"TO":[1,2,3,4,8,9,10,11],"The":[1,3,8,10],"These":[3,10],"To":[3,10],"WITH":[2,3,9,10],"Will":0,"With":0,"__":0,"__1__":0,"__2__":0,"__five__":0,"__four__":0,"__init__":0,"__main__":0,"__name__":0,"__three__":0,"_cach":0,"abandon":[3,10],"abov":[1,2,4,8,9,11],"absenc":[3,10],"account":[3,10],"accuraci":[3,10],"acknowledg":[3,10],"action":[2,3,9,10],"ad":0,"adam":[3,10],"adapt":[3,10],"add":0,"add_source_get_kei":0,"addit":[3,10],"advertis":[3,10],"advis":[1,4,8,11],"affect":[3,10],"affirm":[3,10],"ag":0,"against":[3,10],"alder":0,"all":[2,3,4,9,10,11],"also":0,"alwai":0,"amend":[3,10],"an":[2,3,9,10],"ani":[1,2,3,4,8,9,10,11],"appli":[3,10],"applic":[3,10],"ar":[1,3,4,8,10,11],"arg":0,"argument":0,"aris":[1,2,3,4,8,9,10,11],"armin":[1,8],"asctim":0,"assert":[3,10],"associ":[2,3,9,10],"attributeerror":0,"author":[0,2,3,4,9,10,11],"authorship":[3,10],"automat":[3,10],"avail":[0,3,10],"base":[1,3,8,10],"basicconfig":0,"been":0,"below":[3,4,10,11],"benefit":[3,10],"between":0,"bin":0,"binari":[1,4,8,11],"block":[7,14],"bool":0,"bsd":[4,11],"build":[3,10],"busi":[1,4,8,11],"c":[1,3,4,8,10,11],"cache_filenam":0,"callback":0,"callback_on_data_storag":0,"can":[3,10],"cancel":[3,10],"case":[3,10],"caus":[1,3,4,8,10,11],"certain":[3,10],"chach":0,"chang":0,"charg":[2,9],"checksum":0,"claim":[2,3,9,10],"class":0,"claus":[4,11],"clear":[3,10],"code":[0,1,4,8,11],"commerci":[3,10],"common":[3,10],"commun":[3,10],"compens":[3,10],"competit":[3,10],"complet":0,"concern":[3,10],"condit":[1,2,4,8,9,11],"confer":[3,10],"configur":0,"connect":[2,3,9,10],"consent":[3,10],"consequenti":[1,3,4,8,10,11],"consider":[3,10],"contempl":[3,10],"contract":[1,2,3,4,8,9,10,11],"contrari":[3,10],"contravent":[3,10],"contribut":[3,10],"contributor":[1,4,8,11],"copi":[2,3,9,10],"copyright":[1,2,4,8,9,11],"correspond":[3,10],"cosumpt":0,"council":[3,10],"creativ":[3,10],"creator":[3,10],"cultur":[3,10],"current":[0,3,10],"damag":[1,2,3,4,8,9,10,11],"data":[0,1,3,4,8,10,11],"data_vers":0,"databas":[3,10],"date":[3,10],"de":0,"deal":[2,9],"debug":0,"deem":[3,10],"def":0,"default":0,"defect":[3,10],"defin":[3,10],"depict":[3,10],"deriv":[1,8],"descript":0,"detail":0,"detriment":[3,10],"direct":[1,3,4,8,10,11],"dirk":0,"disclaim":[1,4,8,11],"discover":[3,10],"displai":[3,10],"disrupt":[3,10],"dissemin":[3,10],"distribut":[1,2,3,4,8,9,10,11],"do":[2,9],"document":[1,2,3,4,8,9,10,11],"doe":0,"don":0,"durat":[3,10],"duti":[3,10],"e":0,"each":[0,3,10],"ec":[3,10],"effect":[3,10],"effort":[3,10],"either":[3,10],"elect":[3,10],"els":0,"endblock":[7,14],"endfor":[7,14],"endif":[7,14],"endors":[1,8],"enjoy":[3,10],"env":0,"equit":[3,10],"equival":[3,10],"error":[3,10],"escap":[5,6,7,12,13,14],"european":[3,10],"even":[1,4,8,11],"event":[1,2,3,4,8,9,10,11],"everi":0,"exampl":0,"except":0,"exclus":[3,10],"execut":0,"exemplari":[1,4,8,11],"exercis":[3,10],"exist":[0,3,10],"expect":[3,10],"express":[1,2,3,4,8,9,10,11],"extens":[3,10],"extent":[3,10],"extract":[3,10],"f":0,"fals":0,"fear":[3,10],"fee":[3,10],"file":[0,2,4,9,11],"first":0,"fit":[1,2,3,4,8,9,10,11],"five":0,"float":0,"follow":[1,2,3,4,8,9,10,11],"forcier":[1,8],"form":[1,3,4,8,10,11],"format":0,"four":0,"free":[2,3,9,10],"freeli":[3,10],"from":[0,1,2,3,8,9,10],"full_upd":0,"fulli":[3,10],"fullnam":[5,6,7,12,13,14],"function":0,"furnish":[2,9],"further":[3,10],"futur":[3,10],"g":0,"gain":[3,10],"gener":0,"get":0,"getattr":0,"good":[1,4,8,11],"grant":[2,3,9,10],"greater":[3,10],"greatest":[3,10],"ha":[3,10],"had":0,"he":[3,10],"heir":[3,10],"held":[3,10],"her":[3,10],"herebi":[2,3,9,10],"hi":[3,10],"hold":0,"holder":[1,2,4,8,9,11],"howev":[1,4,8,11],"i":[0,1,2,3,4,8,9,10,11],"id":0,"ideal":[3,10],"ident":0,"ii":[3,10],"iii":[3,10],"imag":[3,10],"implement":[3,10],"impli":[1,2,3,4,8,9,10,11],"import":0,"improv":0,"incident":[1,4,8,11],"includ":[1,2,3,4,8,9,10,11],"incorpor":[3,10],"increas":0,"index":0,"indic":[4,11],"indirect":[1,3,4,8,10,11],"ineffect":[3,10],"inform":0,"infring":[3,10],"initialis":0,"initiallis":0,"instanc":0,"instead":0,"int":0,"intend":[3,10],"interrupt":[1,4,8,11],"invalid":[3,10],"irrevoc":[3,10],"item":[7,14],"its":[3,10],"iv":[3,10],"jeff":[1,8],"json":0,"judg":[3,10],"jurisdict":[3,10],"k":0,"kei":0,"kenneth":[1,8],"key_fiv":0,"key_four":0,"key_on":0,"key_thre":0,"key_two":0,"kind":[2,3,9,10],"knowledg":[3,10],"known":[3,10],"kwarg":0,"larg":[3,10],"latent":[3,10],"later":[3,10],"law":[3,10],"legal":[3,10],"less":0,"level":0,"levelnam":0,"liabil":[1,2,4,8,9,11],"liabl":[1,2,3,4,8,9,10,11],"licenc":[4,11],"like":[3,10],"limit":[0,1,2,4,8,9,11],"list":[0,1,4,8,11],"load":0,"load_all_on_init":0,"log":0,"long":0,"loss":[1,3,4,8,10,11],"made":[3,10],"mai":[1,3,8,10],"make":[3,10],"march":[3,10],"materi":[1,4,8,11],"max_ag":0,"maximum":[0,3,10],"mean":[3,10],"medium":[3,10],"member":[3,10],"merchant":[1,2,3,4,8,9,10,11],"merg":[2,9],"messag":0,"met":[1,4,8,11],"method":0,"mockeri":0,"modif":[1,4,8,11],"modifi":[2,3,9,10],"modul":[7,14],"moral":[3,10],"more":0,"most":[3,10],"motiv":[3,10],"mount":0,"much":0,"must":[1,4,8,11],"my":0,"n":0,"name":[0,1,8],"nation":[3,10],"necessari":[3,10],"need":0,"neglig":[1,3,4,8,10,11],"neighbor":[3,10],"non":[3,10],"none":0,"noninfring":[2,9],"notic":[1,2,4,8,9,11],"now":[3,10],"nthe":0,"number":[0,3,10],"object":0,"oblig":[3,10],"obtain":[2,3,9,10],"offer":[3,10],"one":0,"onli":0,"origin":[1,3,8,10],"other":[0,1,2,3,4,8,9,10,11],"otherwis":[1,2,3,4,8,9,10,11],"out":[1,2,3,4,8,9,10,11],"output":0,"overtli":[3,10],"owner":[1,3,8,10],"page":0,"paragraph":[3,10],"paramet":0,"parent":0,"parliament":[3,10],"part":[3,10],"parti":[3,10],"partial":[3,10],"particular":[1,2,3,4,8,9,10,11],"patent":[3,10],"perform":[3,10],"perman":[3,10],"permiss":[1,2,3,8,9,10],"permit":[1,2,3,4,8,9,10,11],"person":[2,3,9,10],"pertain":[3,10],"pickl":0,"portion":[2,9],"possibl":[1,3,4,8,10,11],"present":[3,10],"preserv":[3,10],"prevent":0,"previou":0,"print":0,"print_n_sleep":0,"prior":[1,8],"privaci":[3,10],"procur":[1,4,8,11],"product":[1,3,8,10],"profit":[1,3,4,8,10,11],"project":[3,4,10,11],"promot":[1,3,8,10],"property_cach":0,"property_cache_json":0,"property_cache_pickl":0,"protect":[3,10],"provid":[0,1,2,3,4,8,9,10,11],"publicli":[3,10],"publish":[2,9],"purpos":[1,2,4,8,9,11],"python":0,"quiet":[3,10],"read":0,"reason":[3,10],"redistribut":[1,3,4,8,10,11],"regard":[3,10],"reitz":[1,8],"reliabl":[3,10],"relinquish":[3,10],"remain":[3,10],"remaind":[3,10],"represent":[3,10],"reproduc":[1,3,4,8,10,11],"reput":[3,10],"requir":[3,10],"resciss":[3,10],"reserv":[1,4,8,11],"respect":[3,10],"respons":[3,10],"restrict":[2,9],"result":[0,3,10],"retain":[1,3,4,8,10,11],"return":0,"return_source_on_non":0,"reus":[3,10],"revoc":[3,10],"right":[1,2,4,8,9,11],"ronach":[1,8],"royalti":[3,10],"rubric":[7,14],"scientif":[3,10],"search":0,"second":0,"see":[0,4,11],"self":0,"sell":[2,9],"servic":[1,4,8,11],"shall":[1,2,3,4,8,9,10,11],"she":[3,10],"shibukawa":[2,9],"should":[0,3,10],"similar":[3,10],"sleep":0,"sleep_between_kei":0,"slow":0,"smaller":0,"so":[2,3,9,10],"softwar":[1,2,3,4,8,9,10,11],"some":[1,8],"somewher":0,"sourc":[0,1,4,8,11],"special":[1,3,4,8,10,11],"specif":[1,8],"statutori":[3,10],"stdout":0,"storag":0,"store":0,"store_on_get":0,"str":0,"stream":0,"strict":[1,4,8,11],"string":0,"structur":0,"subject":[2,3,9,10],"sublicens":[2,3,9,10],"submodul":0,"subsequ":[3,10],"substanti":[2,9],"substitut":[1,4,8,11],"successor":[3,10],"sudo":0,"super":0,"support":0,"surrend":[3,10],"sy":0,"t":0,"take":[0,3,10],"team":[4,11],"term":[3,10],"termin":[3,10],"territori":[3,10],"test":0,"test_slow_data":0,"test_slow_data_cach":0,"theme":[1,8],"theori":[1,4,8,11],"thereof":[3,10],"thi":[0,1,2,3,4,8,9,10,11],"those":[3,10],"three":0,"through":[3,10],"throughout":[3,10],"time":[0,3,10],"timestamp":0,"titl":[3,10],"tm":0,"tort":[1,2,4,8,9,11],"tortiou":[3,10],"trademark":[3,10],"transfer":[0,3,10],"translat":[3,10],"treati":[3,10],"true":0,"try":0,"tupl":0,"turner":[3,10],"two":[0,4,11],"type":0,"uid":0,"uncondit":[3,10],"uncondition":[3,10],"under":[3,4,10,11],"underlin":[5,6,7,12,13,14],"understand":[3,10],"unfair":[3,10],"unicod":0,"uniqu":0,"unittest":0,"unknown":[3,10],"unless":[4,11],"upon":[3,10],"us":[1,2,3,4,8,9,10,11],"usag":0,"usr":0,"utf":0,"valu":0,"version":[0,3,10],"voluntarili":[3,10],"wa":[0,3,10],"wai":[1,4,8,11],"waiv":[3,10],"want":0,"warranti":[1,2,3,4,8,9,10,11],"well":[3,10],"whatsoev":[3,10],"when":0,"where":0,"whether":[1,2,3,4,8,9,10,11],"which":0,"whom":[2,9],"wish":[3,10],"without":[1,2,3,4,8,9,10,11],"work":[1,3,8,10],"world":[3,10],"worldwid":[3,10],"write":0,"written":[1,8],"yet":0,"yoshiki":[2,9],"you":0},"titles":["Welcome to cachings\u2019s documentation!","<no title>","The MIT License (MIT)","Licence","License for Sphinx","<no title>","<no title>","<no title>","<no title>","The MIT License (MIT)","Licence","License for Sphinx","<no title>","<no title>","<no title>"],"titleterms":{"":0,"0":[3,10],"1":[3,10],"2":[3,10],"3":[3,10],"4":[3,10],"The":[0,2,9],"all":0,"ar":0,"bsd":[3,10],"cach":0,"cc0":[3,10],"claus":[3,10],"condit":0,"copyright":[3,10],"disclaim":[3,10],"document":0,"fallback":[3,10],"follow":0,"given":0,"indic":0,"licenc":[3,10],"licens":[2,3,4,9,10,11],"limit":[3,10],"mit":[2,9],"modul":0,"properti":0,"public":[3,10],"purpos":[3,10],"relat":[3,10],"requir":0,"right":[3,10],"source_inst":0,"sphinx":[4,11],"statement":[3,10],"tabl":0,"univers":[3,10],"us":0,"waiver":[3,10],"welcom":0,"zero":[3,10]}})
\ No newline at end of file
diff --git a/_requirements_/specification.pdf b/_requirements_/specification.pdf
index 1cfb774..00fbc3c 100644
Binary files a/_requirements_/specification.pdf and b/_requirements_/specification.pdf differ
diff --git a/_testresults_/unittest.json b/_testresults_/unittest.json
index f8b0f32..f453a7e 100644
--- a/_testresults_/unittest.json
+++ b/_testresults_/unittest.json
@@ -1,12 +1,12 @@
{
"coverage_information": [
{
- "branch_coverage": 96.43,
- "filepath": "/home/dirk/my_repositories/unittest/caching/pylibs/caching",
+ "branch_coverage": 95.83,
+ "filepath": "/home/dirk/work/unittest_collection/caching/pylibs/caching",
"files": [
{
- "branch_coverage": 96.43,
- "filepath": "/home/dirk/my_repositories/unittest/caching/pylibs/caching/__init__.py",
+ "branch_coverage": 95.83,
+ "filepath": "/home/dirk/work/unittest_collection/caching/pylibs/caching/__init__.py",
"fragments": [
{
"coverage_state": "clean",
@@ -626,15 +626,15 @@
"SEC-0004",
"SEC-0005"
],
- "title": "Caching Module"
+ "title": "Module caching"
},
"system_information": {
"Architecture": "64bit",
- "Distribution": "Debian GNU/Linux 12 bookworm",
+ "Distribution": "Debian GNU/Linux 13 trixie",
"Hostname": "ahorn",
- "Kernel": "6.1.0-17-amd64 (#1 SMP PREEMPT_DYNAMIC Debian 6.1.69-1 (2023-12-30))",
+ "Kernel": "6.12.38+deb13-amd64 (#1 SMP PREEMPT_DYNAMIC Debian 6.12.38-1 (2025-07-16))",
"Machine": "x86_64",
- "Path": "/home/dirk/my_repositories/unittest/caching",
+ "Path": "/home/dirk/work/unittest_collection/caching",
"System": "Linux",
"Username": "dirk"
},
@@ -644,12 +644,12 @@
"Name": "caching",
"State": "Released",
"Supported Interpreters": "python3",
- "Version": "da3d2c10abaf6d290e5d8087bf6bc170"
+ "Version": "492ddccaeb7907cd48bd7ca81cbf567b"
},
"testrun_list": [
{
"heading_dict": {},
- "interpreter": "python 3.11.2 (final)",
+ "interpreter": "python 3.13.5 (final)",
"name": "Default Testsession name",
"number_of_failed_tests": 0,
"number_of_possibly_failed_tests": 0,
@@ -665,30 +665,31 @@
"testcases": {
"REQ-0001": {
"args": null,
- "asctime": "2025-03-23 16:02:24,030",
- "created": 1742742144.030931,
+ "asctime": "2025-08-14 14:58:32,646",
+ "created": 1755176312.6460018,
"exc_text": null,
"filename": "__init__.py",
"funcName": "testCase",
"levelname": "INFO",
"levelno": 20,
- "lineno": 327,
+ "lineno": 331,
"message": "REQ-0001",
"module": "__init__",
"moduleLogger": [],
- "msecs": 30.0,
+ "msecs": 646.0,
"msg": "REQ-0001",
"name": "__tLogger__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/report/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/report/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 65.62399864196777,
+ "relativeCreated": 103.190093,
"stack_info": null,
+ "taskName": null,
"testcaseLogger": [
{
"args": [],
- "asctime": "2025-03-23 16:02:24,031",
- "created": 1742742144.03113,
+ "asctime": "2025-08-14 14:58:32,646",
+ "created": 1755176312.646255,
"exc_text": null,
"filename": "test_helpers.py",
"funcName": "clean",
@@ -700,8 +701,8 @@
"moduleLogger": [
{
"args": [],
- "asctime": "2025-03-23 16:02:24,031",
- "created": 1742742144.03103,
+ "asctime": "2025-08-14 14:58:32,646",
+ "created": 1755176312.646128,
"exc_text": null,
"filename": "test_helpers.py",
"funcName": "clean",
@@ -710,36 +711,38 @@
"lineno": 17,
"message": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
"module": "test_helpers",
- "msecs": 31.0,
+ "msecs": 646.0,
"msg": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_helpers.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 65.72294235229492,
+ "relativeCreated": 103.315911,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
}
],
- "msecs": 31.0,
+ "msecs": 646.0,
"msg": "Prepare: Cleanup before testcase execution",
"name": "__tLogger__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_helpers.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 65.82307815551758,
+ "relativeCreated": 103.443213,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread",
- "time_consumption": 0.00010013580322265625
+ "time_consumption": 0.0001270771026611328
},
{
"args": [
"'property_cache_pickle'"
],
- "asctime": "2025-03-23 16:02:24,031",
- "created": 1742742144.0318594,
+ "asctime": "2025-08-14 14:58:32,647",
+ "created": 1755176312.6471782,
"exc_text": null,
"filename": "test_cached_data.py",
"funcName": "cached_data",
@@ -751,8 +754,8 @@
"moduleLogger": [
{
"args": [],
- "asctime": "2025-03-23 16:02:24,031",
- "created": 1742742144.0312192,
+ "asctime": "2025-08-14 14:58:32,646",
+ "created": 1755176312.6463902,
"exc_text": null,
"filename": "__init__.py",
"funcName": "_load_cache",
@@ -761,23 +764,24 @@
"lineno": 237,
"message": "Cache file does not exists (yet).",
"module": "__init__",
- "msecs": 31.0,
+ "msecs": 646.0,
"msg": "Cache file does not exists (yet).",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 65.91224670410156,
+ "relativeCreated": 103.578244,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
"args": [
"['str', 'unicode', 'integer', 'float', 'list', 'dict', 'none']"
],
- "asctime": "2025-03-23 16:02:24,031",
- "created": 1742742144.0312748,
+ "asctime": "2025-08-14 14:58:32,646",
+ "created": 1755176312.6464753,
"exc_text": null,
"filename": "__init__.py",
"funcName": "_load_source",
@@ -786,62 +790,65 @@
"lineno": 246,
"message": "Loading all data from source - ['str', 'unicode', 'integer', 'float', 'list', 'dict', 'none']",
"module": "__init__",
- "msecs": 31.0,
+ "msecs": 646.0,
"msg": "Loading all data from source - %s",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 65.96779823303223,
+ "relativeCreated": 103.663292,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
"args": [
- "/home/dirk/my_repositories/unittest/caching/unittest/output_data/cache_data_test_load_on_init.pkl"
+ "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_load_on_init.pkl"
],
- "asctime": "2025-03-23 16:02:24,031",
- "created": 1742742144.031786,
+ "asctime": "2025-08-14 14:58:32,647",
+ "created": 1755176312.6470778,
"exc_text": null,
"filename": "__init__.py",
"funcName": "_save_only",
"levelname": "DEBUG",
"levelno": 10,
"lineno": 256,
- "message": "cache-file stored (/home/dirk/my_repositories/unittest/caching/unittest/output_data/cache_data_test_load_on_init.pkl)",
+ "message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_load_on_init.pkl)",
"module": "__init__",
- "msecs": 31.0,
+ "msecs": 647.0,
"msg": "cache-file stored (%s)",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 66.47896766662598,
+ "relativeCreated": 104.266075,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
}
],
- "msecs": 31.0,
+ "msecs": 647.0,
"msg": "Prepare: First usage of %s with a class holding the data to be cached",
"name": "__tLogger__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_cached_data.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_cached_data.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 66.55240058898926,
+ "relativeCreated": 104.366349,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread",
- "time_consumption": 7.343292236328125e-05
+ "time_consumption": 0.00010037422180175781
},
{
"args": [
"'string'",
""
],
- "asctime": "2025-03-23 16:02:24,032",
- "created": 1742742144.0321558,
+ "asctime": "2025-08-14 14:58:32,647",
+ "created": 1755176312.647626,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -853,35 +860,36 @@
"moduleLogger": [
{
"args": [
- "/home/dirk/my_repositories/unittest/caching/unittest/output_data/cache_data_test_load_on_init.pkl"
+ "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_load_on_init.pkl"
],
- "asctime": "2025-03-23 16:02:24,031",
- "created": 1742742144.0319843,
+ "asctime": "2025-08-14 14:58:32,647",
+ "created": 1755176312.6473675,
"exc_text": null,
"filename": "__init__.py",
"funcName": "_load_only",
"levelname": "DEBUG",
"levelno": 10,
"lineno": 226,
- "message": "Loading properties from cache (/home/dirk/my_repositories/unittest/caching/unittest/output_data/cache_data_test_load_on_init.pkl)",
+ "message": "Loading properties from cache (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_load_on_init.pkl)",
"module": "__init__",
- "msecs": 31.0,
+ "msecs": 647.0,
"msg": "Loading properties from cache (%s)",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 66.67733192443848,
+ "relativeCreated": 104.555456,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
"args": [
"str"
],
- "asctime": "2025-03-23 16:02:24,032",
- "created": 1742742144.0320365,
+ "asctime": "2025-08-14 14:58:32,647",
+ "created": 1755176312.6474466,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -890,15 +898,16 @@
"lineno": 157,
"message": "Providing property for 'str' from cache",
"module": "__init__",
- "msecs": 32.0,
+ "msecs": 647.0,
"msg": "Providing property for '%s' from cache",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 66.72954559326172,
+ "relativeCreated": 104.634707,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -907,8 +916,8 @@
"'string'",
""
],
- "asctime": "2025-03-23 16:02:24,032",
- "created": 1742742144.0320807,
+ "asctime": "2025-08-14 14:58:32,647",
+ "created": 1755176312.6475112,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -917,15 +926,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=str): 'string' ()",
"module": "test",
- "msecs": 32.0,
+ "msecs": 647.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 66.77365303039551,
+ "relativeCreated": 104.699339,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -935,8 +945,8 @@
"'string'",
""
],
- "asctime": "2025-03-23 16:02:24,032",
- "created": 1742742144.0321183,
+ "asctime": "2025-08-14 14:58:32,647",
+ "created": 1755176312.6475692,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -945,37 +955,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=str): result = 'string' ()",
"module": "test",
- "msecs": 32.0,
+ "msecs": 647.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 66.81132316589355,
+ "relativeCreated": 104.75729,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
}
],
- "msecs": 32.0,
+ "msecs": 647.0,
"msg": "Data from cached instance with key=str is correct (Content %s and Type is %s).",
"name": "__tLogger__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 66.8487548828125,
+ "relativeCreated": 104.814078,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread",
- "time_consumption": 3.743171691894531e-05
+ "time_consumption": 5.6743621826171875e-05
},
{
"args": [
"'unicode'",
""
],
- "asctime": "2025-03-23 16:02:24,032",
- "created": 1742742144.0323398,
+ "asctime": "2025-08-14 14:58:32,647",
+ "created": 1755176312.6478786,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -989,8 +1001,8 @@
"args": [
"unicode"
],
- "asctime": "2025-03-23 16:02:24,032",
- "created": 1742742144.032222,
+ "asctime": "2025-08-14 14:58:32,647",
+ "created": 1755176312.647716,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -999,15 +1011,16 @@
"lineno": 157,
"message": "Providing property for 'unicode' from cache",
"module": "__init__",
- "msecs": 32.0,
+ "msecs": 647.0,
"msg": "Providing property for '%s' from cache",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 66.91503524780273,
+ "relativeCreated": 104.904138,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -1016,8 +1029,8 @@
"'unicode'",
""
],
- "asctime": "2025-03-23 16:02:24,032",
- "created": 1742742144.0322647,
+ "asctime": "2025-08-14 14:58:32,647",
+ "created": 1755176312.6477778,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -1026,15 +1039,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=unicode): 'unicode' ()",
"module": "test",
- "msecs": 32.0,
+ "msecs": 647.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 66.95771217346191,
+ "relativeCreated": 104.965901,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -1044,8 +1058,8 @@
"'unicode'",
""
],
- "asctime": "2025-03-23 16:02:24,032",
- "created": 1742742144.032303,
+ "asctime": "2025-08-14 14:58:32,647",
+ "created": 1755176312.6478293,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -1054,37 +1068,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=unicode): result = 'unicode' ()",
"module": "test",
- "msecs": 32.0,
+ "msecs": 647.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 66.99609756469727,
+ "relativeCreated": 105.017452,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
}
],
- "msecs": 32.0,
+ "msecs": 647.0,
"msg": "Data from cached instance with key=unicode is correct (Content %s and Type is %s).",
"name": "__tLogger__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 67.0328140258789,
+ "relativeCreated": 105.066661,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread",
- "time_consumption": 3.6716461181640625e-05
+ "time_consumption": 4.935264587402344e-05
},
{
"args": [
"17",
""
],
- "asctime": "2025-03-23 16:02:24,032",
- "created": 1742742144.0326061,
+ "asctime": "2025-08-14 14:58:32,648",
+ "created": 1755176312.648133,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -1098,8 +1114,8 @@
"args": [
"integer"
],
- "asctime": "2025-03-23 16:02:24,032",
- "created": 1742742144.0324278,
+ "asctime": "2025-08-14 14:58:32,647",
+ "created": 1755176312.6479664,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -1108,15 +1124,16 @@
"lineno": 157,
"message": "Providing property for 'integer' from cache",
"module": "__init__",
- "msecs": 32.0,
+ "msecs": 647.0,
"msg": "Providing property for '%s' from cache",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 67.12079048156738,
+ "relativeCreated": 105.154681,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -1125,8 +1142,8 @@
"17",
""
],
- "asctime": "2025-03-23 16:02:24,032",
- "created": 1742742144.0324943,
+ "asctime": "2025-08-14 14:58:32,648",
+ "created": 1755176312.6480284,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -1135,15 +1152,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=integer): 17 ()",
"module": "test",
- "msecs": 32.0,
+ "msecs": 648.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 67.18730926513672,
+ "relativeCreated": 105.216438,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -1153,8 +1171,8 @@
"17",
""
],
- "asctime": "2025-03-23 16:02:24,032",
- "created": 1742742144.0325506,
+ "asctime": "2025-08-14 14:58:32,648",
+ "created": 1755176312.6480794,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -1163,37 +1181,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=integer): result = 17 ()",
"module": "test",
- "msecs": 32.0,
+ "msecs": 648.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 67.24357604980469,
+ "relativeCreated": 105.267356,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
}
],
- "msecs": 32.0,
+ "msecs": 648.0,
"msg": "Data from cached instance with key=integer is correct (Content %s and Type is %s).",
"name": "__tLogger__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 67.29912757873535,
+ "relativeCreated": 105.321273,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread",
- "time_consumption": 5.555152893066406e-05
+ "time_consumption": 5.364418029785156e-05
},
{
"args": [
"3.14159",
""
],
- "asctime": "2025-03-23 16:02:24,032",
- "created": 1742742144.0328658,
+ "asctime": "2025-08-14 14:58:32,648",
+ "created": 1755176312.6483915,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -1207,8 +1227,8 @@
"args": [
"float"
],
- "asctime": "2025-03-23 16:02:24,032",
- "created": 1742742144.0327036,
+ "asctime": "2025-08-14 14:58:32,648",
+ "created": 1755176312.648219,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -1217,15 +1237,16 @@
"lineno": 157,
"message": "Providing property for 'float' from cache",
"module": "__init__",
- "msecs": 32.0,
+ "msecs": 648.0,
"msg": "Providing property for '%s' from cache",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 67.39664077758789,
+ "relativeCreated": 105.407331,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -1234,8 +1255,8 @@
"3.14159",
""
],
- "asctime": "2025-03-23 16:02:24,032",
- "created": 1742742144.0327666,
+ "asctime": "2025-08-14 14:58:32,648",
+ "created": 1755176312.648284,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -1244,15 +1265,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=float): 3.14159 ()",
"module": "test",
- "msecs": 32.0,
+ "msecs": 648.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 67.4595832824707,
+ "relativeCreated": 105.471943,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -1262,8 +1284,8 @@
"3.14159",
""
],
- "asctime": "2025-03-23 16:02:24,032",
- "created": 1742742144.0328162,
+ "asctime": "2025-08-14 14:58:32,648",
+ "created": 1755176312.648336,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -1272,37 +1294,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=float): result = 3.14159 ()",
"module": "test",
- "msecs": 32.0,
+ "msecs": 648.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 67.50917434692383,
+ "relativeCreated": 105.524036,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
}
],
- "msecs": 32.0,
+ "msecs": 648.0,
"msg": "Data from cached instance with key=float is correct (Content %s and Type is %s).",
"name": "__tLogger__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 67.55876541137695,
+ "relativeCreated": 105.579517,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread",
- "time_consumption": 4.9591064453125e-05
+ "time_consumption": 5.555152893066406e-05
},
{
"args": [
"[1, 'two', '3', 4]",
""
],
- "asctime": "2025-03-23 16:02:24,033",
- "created": 1742742144.0331433,
+ "asctime": "2025-08-14 14:58:32,648",
+ "created": 1755176312.648677,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -1316,8 +1340,8 @@
"args": [
"list"
],
- "asctime": "2025-03-23 16:02:24,032",
- "created": 1742742144.032946,
+ "asctime": "2025-08-14 14:58:32,648",
+ "created": 1755176312.648475,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -1326,15 +1350,16 @@
"lineno": 157,
"message": "Providing property for 'list' from cache",
"module": "__init__",
- "msecs": 32.0,
+ "msecs": 648.0,
"msg": "Providing property for '%s' from cache",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 67.63911247253418,
+ "relativeCreated": 105.662959,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -1343,8 +1368,8 @@
"[ 1, 'two', '3', 4 ]",
""
],
- "asctime": "2025-03-23 16:02:24,033",
- "created": 1742742144.03301,
+ "asctime": "2025-08-14 14:58:32,648",
+ "created": 1755176312.6485438,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -1353,15 +1378,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=list): [ 1, 'two', '3', 4 ] ()",
"module": "test",
- "msecs": 33.0,
+ "msecs": 648.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 67.7030086517334,
+ "relativeCreated": 105.731867,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -1371,8 +1397,8 @@
"[ 1, 'two', '3', 4 ]",
""
],
- "asctime": "2025-03-23 16:02:24,033",
- "created": 1742742144.0330658,
+ "asctime": "2025-08-14 14:58:32,648",
+ "created": 1755176312.648601,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -1381,37 +1407,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=list): result = [ 1, 'two', '3', 4 ] ()",
"module": "test",
- "msecs": 33.0,
+ "msecs": 648.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 67.75879859924316,
+ "relativeCreated": 105.789269,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
}
],
- "msecs": 33.0,
+ "msecs": 648.0,
"msg": "Data from cached instance with key=list is correct (Content %s and Type is %s).",
"name": "__tLogger__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 67.83628463745117,
+ "relativeCreated": 105.865143,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread",
- "time_consumption": 7.748603820800781e-05
+ "time_consumption": 7.605552673339844e-05
},
{
"args": [
"{'1': 1, '2': 'two', '3': '3', '4': 4}",
""
],
- "asctime": "2025-03-23 16:02:24,033",
- "created": 1742742144.0334384,
+ "asctime": "2025-08-14 14:58:32,648",
+ "created": 1755176312.6489651,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -1425,8 +1453,8 @@
"args": [
"dict"
],
- "asctime": "2025-03-23 16:02:24,033",
- "created": 1742742144.0332372,
+ "asctime": "2025-08-14 14:58:32,648",
+ "created": 1755176312.6487644,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -1435,15 +1463,16 @@
"lineno": 157,
"message": "Providing property for 'dict' from cache",
"module": "__init__",
- "msecs": 33.0,
+ "msecs": 648.0,
"msg": "Providing property for '%s' from cache",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 67.93022155761719,
+ "relativeCreated": 105.952492,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -1452,8 +1481,8 @@
"{ '1': 1, '2': 'two', '3': '3', '4': 4 }",
""
],
- "asctime": "2025-03-23 16:02:24,033",
- "created": 1742742144.0333061,
+ "asctime": "2025-08-14 14:58:32,648",
+ "created": 1755176312.648834,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -1462,15 +1491,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=dict): { '1': 1, '2': 'two', '3': '3', '4': 4 } ()",
"module": "test",
- "msecs": 33.0,
+ "msecs": 648.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 67.99912452697754,
+ "relativeCreated": 106.022151,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -1480,8 +1510,8 @@
"{ '1': 1, '2': 'two', '3': '3', '4': 4 }",
""
],
- "asctime": "2025-03-23 16:02:24,033",
- "created": 1742742144.033366,
+ "asctime": "2025-08-14 14:58:32,648",
+ "created": 1755176312.648893,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -1490,37 +1520,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=dict): result = { '1': 1, '2': 'two', '3': '3', '4': 4 } ()",
"module": "test",
- "msecs": 33.0,
+ "msecs": 648.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 68.05896759033203,
+ "relativeCreated": 106.081368,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
}
],
- "msecs": 33.0,
+ "msecs": 648.0,
"msg": "Data from cached instance with key=dict is correct (Content %s and Type is %s).",
"name": "__tLogger__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 68.1314468383789,
+ "relativeCreated": 106.153255,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread",
- "time_consumption": 7.2479248046875e-05
+ "time_consumption": 7.200241088867188e-05
},
{
"args": [
"None",
""
],
- "asctime": "2025-03-23 16:02:24,033",
- "created": 1742742144.0337236,
+ "asctime": "2025-08-14 14:58:32,649",
+ "created": 1755176312.6492143,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -1534,8 +1566,8 @@
"args": [
"none"
],
- "asctime": "2025-03-23 16:02:24,033",
- "created": 1742742144.0335357,
+ "asctime": "2025-08-14 14:58:32,649",
+ "created": 1755176312.6490526,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -1544,15 +1576,16 @@
"lineno": 157,
"message": "Providing property for 'none' from cache",
"module": "__init__",
- "msecs": 33.0,
+ "msecs": 649.0,
"msg": "Providing property for '%s' from cache",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 68.22872161865234,
+ "relativeCreated": 106.24068,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -1561,8 +1594,8 @@
"None",
""
],
- "asctime": "2025-03-23 16:02:24,033",
- "created": 1742742144.0336046,
+ "asctime": "2025-08-14 14:58:32,649",
+ "created": 1755176312.6491137,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -1571,15 +1604,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=none): None ()",
"module": "test",
- "msecs": 33.0,
+ "msecs": 649.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 68.2976245880127,
+ "relativeCreated": 106.301723,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -1589,8 +1623,8 @@
"None",
""
],
- "asctime": "2025-03-23 16:02:24,033",
- "created": 1742742144.0336635,
+ "asctime": "2025-08-14 14:58:32,649",
+ "created": 1755176312.6491652,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -1599,37 +1633,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=none): result = None ()",
"module": "test",
- "msecs": 33.0,
+ "msecs": 649.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 68.35651397705078,
+ "relativeCreated": 106.353161,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
}
],
- "msecs": 33.0,
+ "msecs": 649.0,
"msg": "Data from cached instance with key=none is correct (Content %s and Type is %s).",
"name": "__tLogger__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 68.41659545898438,
+ "relativeCreated": 106.402256,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread",
- "time_consumption": 6.008148193359375e-05
+ "time_consumption": 4.9114227294921875e-05
},
{
"args": [
"5",
""
],
- "asctime": "2025-03-23 16:02:24,033",
- "created": 1742742144.0339105,
+ "asctime": "2025-08-14 14:58:32,649",
+ "created": 1755176312.6494567,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -1643,8 +1679,8 @@
"args": [
"unknown_key"
],
- "asctime": "2025-03-23 16:02:24,033",
- "created": 1742742144.0337932,
+ "asctime": "2025-08-14 14:58:32,649",
+ "created": 1755176312.6493008,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -1653,15 +1689,16 @@
"lineno": 179,
"message": "Key 'unknown_key' is not in cached_keys. Uncached data will be returned.",
"module": "__init__",
- "msecs": 33.0,
+ "msecs": 649.0,
"msg": "Key '%s' is not in cached_keys. Uncached data will be returned.",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 68.48621368408203,
+ "relativeCreated": 106.488731,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -1670,8 +1707,8 @@
"5",
""
],
- "asctime": "2025-03-23 16:02:24,033",
- "created": 1742742144.0338345,
+ "asctime": "2025-08-14 14:58:32,649",
+ "created": 1755176312.6493587,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -1680,15 +1717,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=unknown_key): 5 ()",
"module": "test",
- "msecs": 33.0,
+ "msecs": 649.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 68.5274600982666,
+ "relativeCreated": 106.546884,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -1698,8 +1736,8 @@
"5",
""
],
- "asctime": "2025-03-23 16:02:24,033",
- "created": 1742742144.0338697,
+ "asctime": "2025-08-14 14:58:32,649",
+ "created": 1755176312.6494086,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -1708,63 +1746,66 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=unknown_key): result = 5 ()",
"module": "test",
- "msecs": 33.0,
+ "msecs": 649.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 68.56274604797363,
+ "relativeCreated": 106.596655,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
}
],
- "msecs": 33.0,
+ "msecs": 649.0,
"msg": "Data from cached instance with key=unknown_key is correct (Content %s and Type is %s).",
"name": "__tLogger__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 68.603515625,
+ "relativeCreated": 106.644826,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread",
- "time_consumption": 4.076957702636719e-05
+ "time_consumption": 4.8160552978515625e-05
}
],
- "thread": 140460812226624,
+ "thread": 140229749231872,
"threadName": "MainThread",
- "time_consumption": 0.0029795169830322266,
- "time_finished": "2025-03-23 16:02:24,033",
- "time_start": "2025-03-23 16:02:24,030"
+ "time_consumption": 0.003454923629760742,
+ "time_finished": "2025-08-14 14:58:32,649",
+ "time_start": "2025-08-14 14:58:32,646"
},
"REQ-0002": {
"args": null,
- "asctime": "2025-03-23 16:02:30,047",
- "created": 1742742150.0470562,
+ "asctime": "2025-08-14 14:58:38,672",
+ "created": 1755176318.6723802,
"exc_text": null,
"filename": "__init__.py",
"funcName": "testCase",
"levelname": "INFO",
"levelno": 20,
- "lineno": 327,
+ "lineno": 331,
"message": "REQ-0002",
"module": "__init__",
"moduleLogger": [],
- "msecs": 47.0,
+ "msecs": 672.0,
"msg": "REQ-0002",
"name": "__tLogger__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/report/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/report/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6081.749200820923,
+ "relativeCreated": 6129.568229,
"stack_info": null,
+ "taskName": null,
"testcaseLogger": [
{
"args": [],
- "asctime": "2025-03-23 16:02:30,048",
- "created": 1742742150.048066,
+ "asctime": "2025-08-14 14:58:38,673",
+ "created": 1755176318.6730142,
"exc_text": null,
"filename": "test_helpers.py",
"funcName": "clean",
@@ -1776,8 +1817,8 @@
"moduleLogger": [
{
"args": [],
- "asctime": "2025-03-23 16:02:30,047",
- "created": 1742742150.047631,
+ "asctime": "2025-08-14 14:58:38,672",
+ "created": 1755176318.672703,
"exc_text": null,
"filename": "test_helpers.py",
"funcName": "clean",
@@ -1786,37 +1827,39 @@
"lineno": 17,
"message": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
"module": "test_helpers",
- "msecs": 47.0,
+ "msecs": 672.0,
"msg": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_helpers.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6082.324028015137,
+ "relativeCreated": 6129.890944,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
}
],
- "msecs": 48.0,
+ "msecs": 673.0,
"msg": "Prepare: Cleanup before testcase execution",
"name": "__tLogger__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_helpers.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6082.758903503418,
+ "relativeCreated": 6130.202383,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread",
- "time_consumption": 0.00043487548828125
+ "time_consumption": 0.00031113624572753906
},
{
"args": [
"'string'",
""
],
- "asctime": "2025-03-23 16:02:30,051",
- "created": 1742742150.0511599,
+ "asctime": "2025-08-14 14:58:38,674",
+ "created": 1755176318.6747823,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -1828,8 +1871,8 @@
"moduleLogger": [
{
"args": [],
- "asctime": "2025-03-23 16:02:30,048",
- "created": 1742742150.0486605,
+ "asctime": "2025-08-14 14:58:38,673",
+ "created": 1755176318.6733284,
"exc_text": null,
"filename": "__init__.py",
"funcName": "_load_cache",
@@ -1838,23 +1881,24 @@
"lineno": 237,
"message": "Cache file does not exists (yet).",
"module": "__init__",
- "msecs": 48.0,
+ "msecs": 673.0,
"msg": "Cache file does not exists (yet).",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6083.353519439697,
+ "relativeCreated": 6130.516598,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
"args": [
"['str', 'unicode', 'integer', 'float', 'list', 'dict', 'none']"
],
- "asctime": "2025-03-23 16:02:30,049",
- "created": 1742742150.0490494,
+ "asctime": "2025-08-14 14:58:38,673",
+ "created": 1755176318.6735303,
"exc_text": null,
"filename": "__init__.py",
"funcName": "_load_source",
@@ -1863,23 +1907,24 @@
"lineno": 246,
"message": "Loading all data from source - ['str', 'unicode', 'integer', 'float', 'list', 'dict', 'none']",
"module": "__init__",
- "msecs": 49.0,
+ "msecs": 673.0,
"msg": "Loading all data from source - %s",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6083.742380142212,
+ "relativeCreated": 6130.718432,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
"args": [
"str"
],
- "asctime": "2025-03-23 16:02:30,050",
- "created": 1742742150.0501792,
+ "asctime": "2025-08-14 14:58:38,674",
+ "created": 1755176318.6742902,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -1888,15 +1933,16 @@
"lineno": 157,
"message": "Providing property for 'str' from cache",
"module": "__init__",
- "msecs": 50.0,
+ "msecs": 674.0,
"msg": "Providing property for '%s' from cache",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6084.872245788574,
+ "relativeCreated": 6131.478198,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -1905,8 +1951,8 @@
"'string'",
""
],
- "asctime": "2025-03-23 16:02:30,050",
- "created": 1742742150.0505536,
+ "asctime": "2025-08-14 14:58:38,674",
+ "created": 1755176318.6744962,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -1915,15 +1961,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=str): 'string' ()",
"module": "test",
- "msecs": 50.0,
+ "msecs": 674.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6085.246562957764,
+ "relativeCreated": 6131.684362,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -1933,8 +1980,8 @@
"'string'",
""
],
- "asctime": "2025-03-23 16:02:30,050",
- "created": 1742742150.0508575,
+ "asctime": "2025-08-14 14:58:38,674",
+ "created": 1755176318.674642,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -1943,37 +1990,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=str): result = 'string' ()",
"module": "test",
- "msecs": 50.0,
+ "msecs": 674.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6085.550546646118,
+ "relativeCreated": 6131.830256,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
}
],
- "msecs": 51.0,
+ "msecs": 674.0,
"msg": "Data from cached instance with key=str is correct (Content %s and Type is %s).",
"name": "__tLogger__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6085.852861404419,
+ "relativeCreated": 6131.970368,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread",
- "time_consumption": 0.00030231475830078125
+ "time_consumption": 0.00014019012451171875
},
{
"args": [
"'unicode'",
""
],
- "asctime": "2025-03-23 16:02:30,052",
- "created": 1742742150.052599,
+ "asctime": "2025-08-14 14:58:38,675",
+ "created": 1755176318.6754527,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -1987,8 +2036,8 @@
"args": [
"unicode"
],
- "asctime": "2025-03-23 16:02:30,051",
- "created": 1742742150.051661,
+ "asctime": "2025-08-14 14:58:38,675",
+ "created": 1755176318.6750195,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -1997,15 +2046,16 @@
"lineno": 157,
"message": "Providing property for 'unicode' from cache",
"module": "__init__",
- "msecs": 51.0,
+ "msecs": 675.0,
"msg": "Providing property for '%s' from cache",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6086.35401725769,
+ "relativeCreated": 6132.207525,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -2014,8 +2064,8 @@
"'unicode'",
""
],
- "asctime": "2025-03-23 16:02:30,051",
- "created": 1742742150.051999,
+ "asctime": "2025-08-14 14:58:38,675",
+ "created": 1755176318.6751826,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -2024,15 +2074,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=unicode): 'unicode' ()",
"module": "test",
- "msecs": 51.0,
+ "msecs": 675.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6086.692094802856,
+ "relativeCreated": 6132.370663,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -2042,8 +2093,8 @@
"'unicode'",
""
],
- "asctime": "2025-03-23 16:02:30,052",
- "created": 1742742150.0522864,
+ "asctime": "2025-08-14 14:58:38,675",
+ "created": 1755176318.675318,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -2052,37 +2103,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=unicode): result = 'unicode' ()",
"module": "test",
- "msecs": 52.0,
+ "msecs": 675.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6086.979389190674,
+ "relativeCreated": 6132.506029,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
}
],
- "msecs": 52.0,
+ "msecs": 675.0,
"msg": "Data from cached instance with key=unicode is correct (Content %s and Type is %s).",
"name": "__tLogger__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6087.291955947876,
+ "relativeCreated": 6132.64069,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread",
- "time_consumption": 0.00031256675720214844
+ "time_consumption": 0.0001347064971923828
},
{
"args": [
"17",
""
],
- "asctime": "2025-03-23 16:02:30,054",
- "created": 1742742150.0540185,
+ "asctime": "2025-08-14 14:58:38,676",
+ "created": 1755176318.6761112,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -2096,8 +2149,8 @@
"args": [
"integer"
],
- "asctime": "2025-03-23 16:02:30,053",
- "created": 1742742150.0530834,
+ "asctime": "2025-08-14 14:58:38,675",
+ "created": 1755176318.6756725,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -2106,15 +2159,16 @@
"lineno": 157,
"message": "Providing property for 'integer' from cache",
"module": "__init__",
- "msecs": 53.0,
+ "msecs": 675.0,
"msg": "Providing property for '%s' from cache",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6087.77642250061,
+ "relativeCreated": 6132.86061,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -2123,8 +2177,8 @@
"17",
""
],
- "asctime": "2025-03-23 16:02:30,053",
- "created": 1742742150.0534174,
+ "asctime": "2025-08-14 14:58:38,675",
+ "created": 1755176318.6758318,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -2133,15 +2187,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=integer): 17 ()",
"module": "test",
- "msecs": 53.0,
+ "msecs": 675.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6088.110446929932,
+ "relativeCreated": 6133.019776,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -2151,8 +2206,8 @@
"17",
""
],
- "asctime": "2025-03-23 16:02:30,053",
- "created": 1742742150.0537093,
+ "asctime": "2025-08-14 14:58:38,675",
+ "created": 1755176318.6759782,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -2161,37 +2216,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=integer): result = 17 ()",
"module": "test",
- "msecs": 53.0,
+ "msecs": 675.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6088.402271270752,
+ "relativeCreated": 6133.166378,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
}
],
- "msecs": 54.0,
+ "msecs": 676.0,
"msg": "Data from cached instance with key=integer is correct (Content %s and Type is %s).",
"name": "__tLogger__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6088.711500167847,
+ "relativeCreated": 6133.299288,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread",
- "time_consumption": 0.00030922889709472656
+ "time_consumption": 0.00013303756713867188
},
{
"args": [
"3.14159",
""
],
- "asctime": "2025-03-23 16:02:30,055",
- "created": 1742742150.0554574,
+ "asctime": "2025-08-14 14:58:38,676",
+ "created": 1755176318.6767933,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -2205,8 +2262,8 @@
"args": [
"float"
],
- "asctime": "2025-03-23 16:02:30,054",
- "created": 1742742150.0545151,
+ "asctime": "2025-08-14 14:58:38,676",
+ "created": 1755176318.676339,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -2215,15 +2272,16 @@
"lineno": 157,
"message": "Providing property for 'float' from cache",
"module": "__init__",
- "msecs": 54.0,
+ "msecs": 676.0,
"msg": "Providing property for '%s' from cache",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6089.208126068115,
+ "relativeCreated": 6133.527114,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -2232,8 +2290,8 @@
"3.14159",
""
],
- "asctime": "2025-03-23 16:02:30,054",
- "created": 1742742150.0548646,
+ "asctime": "2025-08-14 14:58:38,676",
+ "created": 1755176318.6765196,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -2242,15 +2300,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=float): 3.14159 ()",
"module": "test",
- "msecs": 54.0,
+ "msecs": 676.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6089.557647705078,
+ "relativeCreated": 6133.707713,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -2260,8 +2319,8 @@
"3.14159",
""
],
- "asctime": "2025-03-23 16:02:30,055",
- "created": 1742742150.0551617,
+ "asctime": "2025-08-14 14:58:38,676",
+ "created": 1755176318.6766593,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -2270,37 +2329,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=float): result = 3.14159 ()",
"module": "test",
- "msecs": 55.0,
+ "msecs": 676.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6089.854717254639,
+ "relativeCreated": 6133.847457,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
}
],
- "msecs": 55.0,
+ "msecs": 676.0,
"msg": "Data from cached instance with key=float is correct (Content %s and Type is %s).",
"name": "__tLogger__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6090.150356292725,
+ "relativeCreated": 6133.981339,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread",
- "time_consumption": 0.0002956390380859375
+ "time_consumption": 0.00013399124145507812
},
{
"args": [
"[1, 'two', '3', 4]",
""
],
- "asctime": "2025-03-23 16:02:30,056",
- "created": 1742742150.0568123,
+ "asctime": "2025-08-14 14:58:38,677",
+ "created": 1755176318.6775322,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -2314,8 +2375,8 @@
"args": [
"list"
],
- "asctime": "2025-03-23 16:02:30,055",
- "created": 1742742150.0559187,
+ "asctime": "2025-08-14 14:58:38,677",
+ "created": 1755176318.677014,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -2324,15 +2385,16 @@
"lineno": 157,
"message": "Providing property for 'list' from cache",
"module": "__init__",
- "msecs": 55.0,
+ "msecs": 677.0,
"msg": "Providing property for '%s' from cache",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6090.611696243286,
+ "relativeCreated": 6134.202053,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -2341,8 +2403,8 @@
"[ 1, 'two', '3', 4 ]",
""
],
- "asctime": "2025-03-23 16:02:30,056",
- "created": 1742742150.0562537,
+ "asctime": "2025-08-14 14:58:38,677",
+ "created": 1755176318.6771905,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -2351,15 +2413,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=list): [ 1, 'two', '3', 4 ] ()",
"module": "test",
- "msecs": 56.0,
+ "msecs": 677.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6090.946674346924,
+ "relativeCreated": 6134.378773,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -2369,8 +2432,8 @@
"[ 1, 'two', '3', 4 ]",
""
],
- "asctime": "2025-03-23 16:02:30,056",
- "created": 1742742150.0565083,
+ "asctime": "2025-08-14 14:58:38,677",
+ "created": 1755176318.677341,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -2379,37 +2442,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=list): result = [ 1, 'two', '3', 4 ] ()",
"module": "test",
- "msecs": 56.0,
+ "msecs": 677.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6091.201305389404,
+ "relativeCreated": 6134.52893,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
}
],
- "msecs": 56.0,
+ "msecs": 677.0,
"msg": "Data from cached instance with key=list is correct (Content %s and Type is %s).",
"name": "__tLogger__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6091.505289077759,
+ "relativeCreated": 6134.720327,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread",
- "time_consumption": 0.0003039836883544922
+ "time_consumption": 0.00019121170043945312
},
{
"args": [
"{'1': 1, '2': 'two', '3': '3', '4': 4}",
""
],
- "asctime": "2025-03-23 16:02:30,057",
- "created": 1742742150.0579402,
+ "asctime": "2025-08-14 14:58:38,678",
+ "created": 1755176318.6783807,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -2423,8 +2488,8 @@
"args": [
"dict"
],
- "asctime": "2025-03-23 16:02:30,057",
- "created": 1742742150.0572398,
+ "asctime": "2025-08-14 14:58:38,677",
+ "created": 1755176318.6777627,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -2433,15 +2498,16 @@
"lineno": 157,
"message": "Providing property for 'dict' from cache",
"module": "__init__",
- "msecs": 57.0,
+ "msecs": 677.0,
"msg": "Providing property for '%s' from cache",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6091.932773590088,
+ "relativeCreated": 6134.950964,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -2450,8 +2516,8 @@
"{ '1': 1, '2': 'two', '3': '3', '4': 4 }",
""
],
- "asctime": "2025-03-23 16:02:30,057",
- "created": 1742742150.0575035,
+ "asctime": "2025-08-14 14:58:38,677",
+ "created": 1755176318.67796,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -2460,15 +2526,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=dict): { '1': 1, '2': 'two', '3': '3', '4': 4 } ()",
"module": "test",
- "msecs": 57.0,
+ "msecs": 677.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6092.196464538574,
+ "relativeCreated": 6135.147984,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -2478,8 +2545,8 @@
"{ '1': 1, '2': 'two', '3': '3', '4': 4 }",
""
],
- "asctime": "2025-03-23 16:02:30,057",
- "created": 1742742150.0577178,
+ "asctime": "2025-08-14 14:58:38,678",
+ "created": 1755176318.6781554,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -2488,37 +2555,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=dict): result = { '1': 1, '2': 'two', '3': '3', '4': 4 } ()",
"module": "test",
- "msecs": 57.0,
+ "msecs": 678.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6092.4108028411865,
+ "relativeCreated": 6135.343677,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
}
],
- "msecs": 57.0,
+ "msecs": 678.0,
"msg": "Data from cached instance with key=dict is correct (Content %s and Type is %s).",
"name": "__tLogger__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6092.633247375488,
+ "relativeCreated": 6135.569015,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread",
- "time_consumption": 0.0002224445343017578
+ "time_consumption": 0.00022530555725097656
},
{
"args": [
"None",
""
],
- "asctime": "2025-03-23 16:02:30,058",
- "created": 1742742150.0587764,
+ "asctime": "2025-08-14 14:58:38,679",
+ "created": 1755176318.6792486,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -2532,8 +2601,8 @@
"args": [
"none"
],
- "asctime": "2025-03-23 16:02:30,058",
- "created": 1742742150.0582838,
+ "asctime": "2025-08-14 14:58:38,678",
+ "created": 1755176318.678625,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -2542,15 +2611,16 @@
"lineno": 157,
"message": "Providing property for 'none' from cache",
"module": "__init__",
- "msecs": 58.0,
+ "msecs": 678.0,
"msg": "Providing property for '%s' from cache",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6092.976808547974,
+ "relativeCreated": 6135.813148,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -2559,8 +2629,8 @@
"None",
""
],
- "asctime": "2025-03-23 16:02:30,058",
- "created": 1742742150.0584724,
+ "asctime": "2025-08-14 14:58:38,678",
+ "created": 1755176318.67879,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -2569,15 +2639,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=none): None ()",
"module": "test",
- "msecs": 58.0,
+ "msecs": 678.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6093.165397644043,
+ "relativeCreated": 6135.97833,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -2587,8 +2658,8 @@
"None",
""
],
- "asctime": "2025-03-23 16:02:30,058",
- "created": 1742742150.0586264,
+ "asctime": "2025-08-14 14:58:38,679",
+ "created": 1755176318.6790044,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -2597,147 +2668,153 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=none): result = None ()",
"module": "test",
- "msecs": 58.0,
+ "msecs": 679.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6093.319416046143,
+ "relativeCreated": 6136.19256,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
}
],
- "msecs": 58.0,
+ "msecs": 679.0,
"msg": "Data from cached instance with key=none is correct (Content %s and Type is %s).",
"name": "__tLogger__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6093.4693813323975,
+ "relativeCreated": 6136.436699,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread",
- "time_consumption": 0.0001499652862548828
+ "time_consumption": 0.000244140625
},
{
"args": [
"False",
""
],
- "asctime": "2025-03-23 16:02:30,059",
- "created": 1742742150.0593917,
+ "asctime": "2025-08-14 14:58:38,680",
+ "created": 1755176318.6801958,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
"levelname": "INFO",
"levelno": 20,
"lineno": 184,
- "message": "The cache file (/home/dirk/my_repositories/unittest/caching/unittest/output_data/cache_data_test_full_update_sleep.json) shall not exist is correct (Content False and Type is ).",
+ "message": "The cache file (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_full_update_sleep.json) shall not exist is correct (Content False and Type is ).",
"module": "test",
"moduleLogger": [
{
"args": [
- "The cache file (/home/dirk/my_repositories/unittest/caching/unittest/output_data/cache_data_test_full_update_sleep.json) shall not exist",
+ "The cache file (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_full_update_sleep.json) shall not exist",
"False",
""
],
- "asctime": "2025-03-23 16:02:30,059",
- "created": 1742742150.0590727,
+ "asctime": "2025-08-14 14:58:38,679",
+ "created": 1755176318.6796892,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
"levelname": "DEBUG",
"levelno": 10,
"lineno": 22,
- "message": "Result (The cache file (/home/dirk/my_repositories/unittest/caching/unittest/output_data/cache_data_test_full_update_sleep.json) shall not exist): False ()",
+ "message": "Result (The cache file (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_full_update_sleep.json) shall not exist): False ()",
"module": "test",
- "msecs": 59.0,
+ "msecs": 679.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6093.765735626221,
+ "relativeCreated": 6136.87736,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
"args": [
- "The cache file (/home/dirk/my_repositories/unittest/caching/unittest/output_data/cache_data_test_full_update_sleep.json) shall not exist",
+ "The cache file (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_full_update_sleep.json) shall not exist",
"=",
"False",
""
],
- "asctime": "2025-03-23 16:02:30,059",
- "created": 1742742150.0592294,
+ "asctime": "2025-08-14 14:58:38,679",
+ "created": 1755176318.679943,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
"levelname": "DEBUG",
"levelno": 10,
"lineno": 26,
- "message": "Expectation (The cache file (/home/dirk/my_repositories/unittest/caching/unittest/output_data/cache_data_test_full_update_sleep.json) shall not exist): result = False ()",
+ "message": "Expectation (The cache file (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_full_update_sleep.json) shall not exist): result = False ()",
"module": "test",
- "msecs": 59.0,
+ "msecs": 679.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6093.92237663269,
+ "relativeCreated": 6137.131385,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
}
],
- "msecs": 59.0,
- "msg": "The cache file (/home/dirk/my_repositories/unittest/caching/unittest/output_data/cache_data_test_full_update_sleep.json) shall not exist is correct (Content %s and Type is %s).",
+ "msecs": 680.0,
+ "msg": "The cache file (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_full_update_sleep.json) shall not exist is correct (Content %s and Type is %s).",
"name": "__tLogger__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6094.084739685059,
+ "relativeCreated": 6137.384008,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread",
- "time_consumption": 0.00016236305236816406
+ "time_consumption": 0.00025272369384765625
}
],
- "thread": 140460812226624,
+ "thread": 140229749231872,
"threadName": "MainThread",
- "time_consumption": 0.012335538864135742,
- "time_finished": "2025-03-23 16:02:30,059",
- "time_start": "2025-03-23 16:02:30,047"
+ "time_consumption": 0.00781559944152832,
+ "time_finished": "2025-08-14 14:58:38,680",
+ "time_start": "2025-08-14 14:58:38,672"
},
"REQ-0003": {
"args": null,
- "asctime": "2025-03-23 16:02:24,028",
- "created": 1742742144.0282943,
+ "asctime": "2025-08-14 14:58:32,642",
+ "created": 1755176312.6425395,
"exc_text": null,
"filename": "__init__.py",
"funcName": "testCase",
"levelname": "INFO",
"levelno": 20,
- "lineno": 327,
+ "lineno": 331,
"message": "REQ-0003",
"module": "__init__",
"moduleLogger": [],
- "msecs": 28.0,
+ "msecs": 642.0,
"msg": "REQ-0003",
"name": "__tLogger__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/report/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/report/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 62.987327575683594,
+ "relativeCreated": 99.727564,
"stack_info": null,
+ "taskName": null,
"testcaseLogger": [
{
"args": [],
- "asctime": "2025-03-23 16:02:24,028",
- "created": 1742742144.0287323,
+ "asctime": "2025-08-14 14:58:32,643",
+ "created": 1755176312.6430807,
"exc_text": null,
"filename": "test_helpers.py",
"funcName": "clean",
@@ -2749,8 +2826,8 @@
"moduleLogger": [
{
"args": [],
- "asctime": "2025-03-23 16:02:24,028",
- "created": 1742742144.0285718,
+ "asctime": "2025-08-14 14:58:32,642",
+ "created": 1755176312.6429133,
"exc_text": null,
"filename": "test_helpers.py",
"funcName": "clean",
@@ -2759,36 +2836,38 @@
"lineno": 17,
"message": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
"module": "test_helpers",
- "msecs": 28.0,
+ "msecs": 642.0,
"msg": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_helpers.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 63.26484680175781,
+ "relativeCreated": 100.101268,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
}
],
- "msecs": 28.0,
+ "msecs": 643.0,
"msg": "Prepare: Cleanup before testcase execution",
"name": "__tLogger__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_helpers.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 63.425302505493164,
+ "relativeCreated": 100.268863,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread",
- "time_consumption": 0.00016045570373535156
+ "time_consumption": 0.00016736984252929688
},
{
"args": [
"'property_cache_json'"
],
- "asctime": "2025-03-23 16:02:24,028",
- "created": 1742742144.0288606,
+ "asctime": "2025-08-14 14:58:32,643",
+ "created": 1755176312.6432078,
"exc_text": null,
"filename": "test_cached_data.py",
"funcName": "cached_data",
@@ -2798,15 +2877,16 @@
"message": "Prepare: First usage of 'property_cache_json' with a class holding the data to be cached",
"module": "test_cached_data",
"moduleLogger": [],
- "msecs": 28.0,
+ "msecs": 643.0,
"msg": "Prepare: First usage of %s with a class holding the data to be cached",
"name": "__tLogger__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_cached_data.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_cached_data.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 63.553571701049805,
+ "relativeCreated": 100.395816,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread",
"time_consumption": 0.0
},
@@ -2815,8 +2895,8 @@
"'__string__'",
""
],
- "asctime": "2025-03-23 16:02:24,029",
- "created": 1742742144.029372,
+ "asctime": "2025-08-14 14:58:32,643",
+ "created": 1755176312.643832,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -2828,8 +2908,8 @@
"moduleLogger": [
{
"args": [],
- "asctime": "2025-03-23 16:02:24,029",
- "created": 1742742144.029086,
+ "asctime": "2025-08-14 14:58:32,643",
+ "created": 1755176312.6434593,
"exc_text": null,
"filename": "__init__.py",
"funcName": "_load_cache",
@@ -2838,23 +2918,24 @@
"lineno": 237,
"message": "Cache file does not exists (yet).",
"module": "__init__",
- "msecs": 29.0,
+ "msecs": 643.0,
"msg": "Cache file does not exists (yet).",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 63.77911567687988,
+ "relativeCreated": 100.647301,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
"args": [
"str"
],
- "asctime": "2025-03-23 16:02:24,029",
- "created": 1742742144.0291865,
+ "asctime": "2025-08-14 14:58:32,643",
+ "created": 1755176312.643569,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -2863,15 +2944,16 @@
"lineno": 163,
"message": "Loading property for key='str' from source instance",
"module": "__init__",
- "msecs": 29.0,
+ "msecs": 643.0,
"msg": "Loading property for key='%s' from source instance",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 63.87948989868164,
+ "relativeCreated": 100.756864,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -2880,8 +2962,8 @@
"'__string__'",
""
],
- "asctime": "2025-03-23 16:02:24,029",
- "created": 1742742144.0292642,
+ "asctime": "2025-08-14 14:58:32,643",
+ "created": 1755176312.6436756,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -2890,15 +2972,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=str): '__string__' ()",
"module": "test",
- "msecs": 29.0,
+ "msecs": 643.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 63.95721435546875,
+ "relativeCreated": 100.863694,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -2908,8 +2991,8 @@
"'__string__'",
""
],
- "asctime": "2025-03-23 16:02:24,029",
- "created": 1742742144.0293148,
+ "asctime": "2025-08-14 14:58:32,643",
+ "created": 1755176312.6437435,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -2918,37 +3001,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=str): result = '__string__' ()",
"module": "test",
- "msecs": 29.0,
+ "msecs": 643.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 64.00775909423828,
+ "relativeCreated": 100.931557,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
}
],
- "msecs": 29.0,
+ "msecs": 643.0,
"msg": "Data from cached instance with key=str is correct (Content %s and Type is %s).",
"name": "__tLogger__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 64.06497955322266,
+ "relativeCreated": 101.02023,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread",
- "time_consumption": 5.7220458984375e-05
+ "time_consumption": 8.845329284667969e-05
},
{
"args": [
"'__unicode__'",
""
],
- "asctime": "2025-03-23 16:02:24,029",
- "created": 1742742144.029563,
+ "asctime": "2025-08-14 14:58:32,644",
+ "created": 1755176312.6441035,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -2962,8 +3047,8 @@
"args": [
"unicode"
],
- "asctime": "2025-03-23 16:02:24,029",
- "created": 1742742144.0294447,
+ "asctime": "2025-08-14 14:58:32,643",
+ "created": 1755176312.643931,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -2972,15 +3057,16 @@
"lineno": 163,
"message": "Loading property for key='unicode' from source instance",
"module": "__init__",
- "msecs": 29.0,
+ "msecs": 643.0,
"msg": "Loading property for key='%s' from source instance",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 64.13769721984863,
+ "relativeCreated": 101.118907,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -2989,8 +3075,8 @@
"'__unicode__'",
""
],
- "asctime": "2025-03-23 16:02:24,029",
- "created": 1742742144.029489,
+ "asctime": "2025-08-14 14:58:32,643",
+ "created": 1755176312.6439965,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -2999,15 +3085,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=unicode): '__unicode__' ()",
"module": "test",
- "msecs": 29.0,
+ "msecs": 643.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 64.18204307556152,
+ "relativeCreated": 101.184416,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -3017,8 +3104,8 @@
"'__unicode__'",
""
],
- "asctime": "2025-03-23 16:02:24,029",
- "created": 1742742144.0295262,
+ "asctime": "2025-08-14 14:58:32,644",
+ "created": 1755176312.6440492,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -3027,37 +3114,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=unicode): result = '__unicode__' ()",
"module": "test",
- "msecs": 29.0,
+ "msecs": 644.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 64.21923637390137,
+ "relativeCreated": 101.237289,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
}
],
- "msecs": 29.0,
+ "msecs": 644.0,
"msg": "Data from cached instance with key=unicode is correct (Content %s and Type is %s).",
"name": "__tLogger__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 64.25595283508301,
+ "relativeCreated": 101.291483,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread",
- "time_consumption": 3.6716461181640625e-05
+ "time_consumption": 5.435943603515625e-05
},
{
"args": [
"34",
""
],
- "asctime": "2025-03-23 16:02:24,029",
- "created": 1742742144.0297472,
+ "asctime": "2025-08-14 14:58:32,644",
+ "created": 1755176312.6443906,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -3071,8 +3160,8 @@
"args": [
"integer"
],
- "asctime": "2025-03-23 16:02:24,029",
- "created": 1742742144.0296278,
+ "asctime": "2025-08-14 14:58:32,644",
+ "created": 1755176312.6441905,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -3081,15 +3170,16 @@
"lineno": 163,
"message": "Loading property for key='integer' from source instance",
"module": "__init__",
- "msecs": 29.0,
+ "msecs": 644.0,
"msg": "Loading property for key='%s' from source instance",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 64.32080268859863,
+ "relativeCreated": 101.37863,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -3098,8 +3188,8 @@
"34",
""
],
- "asctime": "2025-03-23 16:02:24,029",
- "created": 1742742144.029672,
+ "asctime": "2025-08-14 14:58:32,644",
+ "created": 1755176312.644259,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -3108,15 +3198,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=integer): 34 ()",
"module": "test",
- "msecs": 29.0,
+ "msecs": 644.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 64.36491012573242,
+ "relativeCreated": 101.447143,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -3126,8 +3217,8 @@
"34",
""
],
- "asctime": "2025-03-23 16:02:24,029",
- "created": 1742742144.0297084,
+ "asctime": "2025-08-14 14:58:32,644",
+ "created": 1755176312.6443365,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -3136,37 +3227,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=integer): result = 34 ()",
"module": "test",
- "msecs": 29.0,
+ "msecs": 644.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 64.40138816833496,
+ "relativeCreated": 101.52442,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
}
],
- "msecs": 29.0,
+ "msecs": 644.0,
"msg": "Data from cached instance with key=integer is correct (Content %s and Type is %s).",
"name": "__tLogger__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 64.44025039672852,
+ "relativeCreated": 101.57866,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread",
- "time_consumption": 3.886222839355469e-05
+ "time_consumption": 5.412101745605469e-05
},
{
"args": [
"2.71828",
""
],
- "asctime": "2025-03-23 16:02:24,029",
- "created": 1742742144.0299244,
+ "asctime": "2025-08-14 14:58:32,644",
+ "created": 1755176312.6446435,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -3180,8 +3273,8 @@
"args": [
"float"
],
- "asctime": "2025-03-23 16:02:24,029",
- "created": 1742742144.0298073,
+ "asctime": "2025-08-14 14:58:32,644",
+ "created": 1755176312.6444771,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -3190,15 +3283,16 @@
"lineno": 163,
"message": "Loading property for key='float' from source instance",
"module": "__init__",
- "msecs": 29.0,
+ "msecs": 644.0,
"msg": "Loading property for key='%s' from source instance",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 64.50033187866211,
+ "relativeCreated": 101.665215,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -3207,8 +3301,8 @@
"2.71828",
""
],
- "asctime": "2025-03-23 16:02:24,029",
- "created": 1742742144.0298514,
+ "asctime": "2025-08-14 14:58:32,644",
+ "created": 1755176312.6445408,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -3217,15 +3311,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=float): 2.71828 ()",
"module": "test",
- "msecs": 29.0,
+ "msecs": 644.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 64.5444393157959,
+ "relativeCreated": 101.728724,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -3235,8 +3330,8 @@
"2.71828",
""
],
- "asctime": "2025-03-23 16:02:24,029",
- "created": 1742742144.0298886,
+ "asctime": "2025-08-14 14:58:32,644",
+ "created": 1755176312.644593,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -3245,37 +3340,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=float): result = 2.71828 ()",
"module": "test",
- "msecs": 29.0,
+ "msecs": 644.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 64.58163261413574,
+ "relativeCreated": 101.781104,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
}
],
- "msecs": 29.0,
+ "msecs": 644.0,
"msg": "Data from cached instance with key=float is correct (Content %s and Type is %s).",
"name": "__tLogger__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 64.61739540100098,
+ "relativeCreated": 101.831696,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread",
- "time_consumption": 3.5762786865234375e-05
+ "time_consumption": 5.054473876953125e-05
},
{
"args": [
"['one', 2, 3, '4']",
""
],
- "asctime": "2025-03-23 16:02:24,030",
- "created": 1742742144.0301635,
+ "asctime": "2025-08-14 14:58:32,644",
+ "created": 1755176312.6449707,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -3289,8 +3386,8 @@
"args": [
"list"
],
- "asctime": "2025-03-23 16:02:24,029",
- "created": 1742742144.0299845,
+ "asctime": "2025-08-14 14:58:32,644",
+ "created": 1755176312.6447272,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -3299,15 +3396,16 @@
"lineno": 163,
"message": "Loading property for key='list' from source instance",
"module": "__init__",
- "msecs": 29.0,
+ "msecs": 644.0,
"msg": "Loading property for key='%s' from source instance",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 64.67747688293457,
+ "relativeCreated": 101.915389,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -3316,8 +3414,8 @@
"[ 'one', 2, 3, '4' ]",
""
],
- "asctime": "2025-03-23 16:02:24,030",
- "created": 1742742144.0300355,
+ "asctime": "2025-08-14 14:58:32,644",
+ "created": 1755176312.6448038,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -3326,15 +3424,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=list): [ 'one', 2, 3, '4' ] ()",
"module": "test",
- "msecs": 30.0,
+ "msecs": 644.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 64.7284984588623,
+ "relativeCreated": 101.992013,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -3344,8 +3443,8 @@
"[ 'one', 2, 3, '4' ]",
""
],
- "asctime": "2025-03-23 16:02:24,030",
- "created": 1742742144.0300994,
+ "asctime": "2025-08-14 14:58:32,644",
+ "created": 1755176312.6448686,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -3354,37 +3453,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=list): result = [ 'one', 2, 3, '4' ] ()",
"module": "test",
- "msecs": 30.0,
+ "msecs": 644.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 64.79239463806152,
+ "relativeCreated": 102.056576,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
}
],
- "msecs": 30.0,
+ "msecs": 644.0,
"msg": "Data from cached instance with key=list is correct (Content %s and Type is %s).",
"name": "__tLogger__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 64.85652923583984,
+ "relativeCreated": 102.158762,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread",
- "time_consumption": 6.413459777832031e-05
+ "time_consumption": 0.00010204315185546875
},
{
"args": [
"{'1': '1', '2': 2, '3': 'three', '4': '4'}",
""
],
- "asctime": "2025-03-23 16:02:24,030",
- "created": 1742742144.0303829,
+ "asctime": "2025-08-14 14:58:32,645",
+ "created": 1755176312.6452956,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -3398,8 +3499,8 @@
"args": [
"dict"
],
- "asctime": "2025-03-23 16:02:24,030",
- "created": 1742742144.0302277,
+ "asctime": "2025-08-14 14:58:32,645",
+ "created": 1755176312.6450791,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -3408,15 +3509,16 @@
"lineno": 163,
"message": "Loading property for key='dict' from source instance",
"module": "__init__",
- "msecs": 30.0,
+ "msecs": 645.0,
"msg": "Loading property for key='%s' from source instance",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 64.92066383361816,
+ "relativeCreated": 102.267186,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -3425,8 +3527,8 @@
"{ '1': '1', '2': 2, '3': 'three', '4': '4' }",
""
],
- "asctime": "2025-03-23 16:02:24,030",
- "created": 1742742144.0302796,
+ "asctime": "2025-08-14 14:58:32,645",
+ "created": 1755176312.6451492,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -3435,15 +3537,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=dict): { '1': '1', '2': 2, '3': 'three', '4': '4' } ()",
"module": "test",
- "msecs": 30.0,
+ "msecs": 645.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 64.9726390838623,
+ "relativeCreated": 102.337404,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -3453,8 +3556,8 @@
"{ '1': '1', '2': 2, '3': 'three', '4': '4' }",
""
],
- "asctime": "2025-03-23 16:02:24,030",
- "created": 1742742144.030323,
+ "asctime": "2025-08-14 14:58:32,645",
+ "created": 1755176312.6452081,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -3463,37 +3566,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=dict): result = { '1': '1', '2': 2, '3': 'three', '4': '4' } ()",
"module": "test",
- "msecs": 30.0,
+ "msecs": 645.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 65.01603126525879,
+ "relativeCreated": 102.396199,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
}
],
- "msecs": 30.0,
+ "msecs": 645.0,
"msg": "Data from cached instance with key=dict is correct (Content %s and Type is %s).",
"name": "__tLogger__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 65.07587432861328,
+ "relativeCreated": 102.483669,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread",
- "time_consumption": 5.984306335449219e-05
+ "time_consumption": 8.749961853027344e-05
},
{
"args": [
"'not None'",
""
],
- "asctime": "2025-03-23 16:02:24,030",
- "created": 1742742144.030559,
+ "asctime": "2025-08-14 14:58:32,645",
+ "created": 1755176312.6455429,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -3507,8 +3612,8 @@
"args": [
"none"
],
- "asctime": "2025-03-23 16:02:24,030",
- "created": 1742742144.0304463,
+ "asctime": "2025-08-14 14:58:32,645",
+ "created": 1755176312.6453822,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -3517,15 +3622,16 @@
"lineno": 163,
"message": "Loading property for key='none' from source instance",
"module": "__init__",
- "msecs": 30.0,
+ "msecs": 645.0,
"msg": "Loading property for key='%s' from source instance",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 65.1392936706543,
+ "relativeCreated": 102.570161,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -3534,8 +3640,8 @@
"'not None'",
""
],
- "asctime": "2025-03-23 16:02:24,030",
- "created": 1742742144.0304883,
+ "asctime": "2025-08-14 14:58:32,645",
+ "created": 1755176312.6454442,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -3544,15 +3650,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=none): 'not None' ()",
"module": "test",
- "msecs": 30.0,
+ "msecs": 645.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 65.18125534057617,
+ "relativeCreated": 102.632115,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -3562,8 +3669,8 @@
"'not None'",
""
],
- "asctime": "2025-03-23 16:02:24,030",
- "created": 1742742144.0305235,
+ "asctime": "2025-08-14 14:58:32,645",
+ "created": 1755176312.6454945,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -3572,37 +3679,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=none): result = 'not None' ()",
"module": "test",
- "msecs": 30.0,
+ "msecs": 645.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 65.2165412902832,
+ "relativeCreated": 102.682677,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
}
],
- "msecs": 30.0,
+ "msecs": 645.0,
"msg": "Data from cached instance with key=none is correct (Content %s and Type is %s).",
"name": "__tLogger__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 65.25206565856934,
+ "relativeCreated": 102.73099,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread",
- "time_consumption": 3.552436828613281e-05
+ "time_consumption": 4.839897155761719e-05
},
{
"args": [
"5",
""
],
- "asctime": "2025-03-23 16:02:24,030",
- "created": 1742742144.0307484,
+ "asctime": "2025-08-14 14:58:32,645",
+ "created": 1755176312.6457808,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -3616,8 +3725,8 @@
"args": [
"unknown_key"
],
- "asctime": "2025-03-23 16:02:24,030",
- "created": 1742742144.0306306,
+ "asctime": "2025-08-14 14:58:32,645",
+ "created": 1755176312.645629,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -3626,15 +3735,16 @@
"lineno": 179,
"message": "Key 'unknown_key' is not in cached_keys. Uncached data will be returned.",
"module": "__init__",
- "msecs": 30.0,
+ "msecs": 645.0,
"msg": "Key '%s' is not in cached_keys. Uncached data will be returned.",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 65.3235912322998,
+ "relativeCreated": 102.816943,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -3643,8 +3753,8 @@
"5",
""
],
- "asctime": "2025-03-23 16:02:24,030",
- "created": 1742742144.0306726,
+ "asctime": "2025-08-14 14:58:32,645",
+ "created": 1755176312.645686,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -3653,15 +3763,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=unknown_key): 5 ()",
"module": "test",
- "msecs": 30.0,
+ "msecs": 645.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 65.36555290222168,
+ "relativeCreated": 102.874012,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -3671,8 +3782,8 @@
"5",
""
],
- "asctime": "2025-03-23 16:02:24,030",
- "created": 1742742144.0307095,
+ "asctime": "2025-08-14 14:58:32,645",
+ "created": 1755176312.645734,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -3681,63 +3792,66 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=unknown_key): result = 5 ()",
"module": "test",
- "msecs": 30.0,
+ "msecs": 645.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 65.40250778198242,
+ "relativeCreated": 102.922112,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
}
],
- "msecs": 30.0,
+ "msecs": 645.0,
"msg": "Data from cached instance with key=unknown_key is correct (Content %s and Type is %s).",
"name": "__tLogger__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 65.44137001037598,
+ "relativeCreated": 102.968738,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread",
- "time_consumption": 3.886222839355469e-05
+ "time_consumption": 4.673004150390625e-05
}
],
- "thread": 140460812226624,
+ "thread": 140229749231872,
"threadName": "MainThread",
- "time_consumption": 0.002454042434692383,
- "time_finished": "2025-03-23 16:02:24,030",
- "time_start": "2025-03-23 16:02:24,028"
+ "time_consumption": 0.003241300582885742,
+ "time_finished": "2025-08-14 14:58:32,645",
+ "time_start": "2025-08-14 14:58:32,642"
},
"REQ-0004": {
"args": null,
- "asctime": "2025-03-23 16:02:24,041",
- "created": 1742742144.0411615,
+ "asctime": "2025-08-14 14:58:32,662",
+ "created": 1755176312.6625688,
"exc_text": null,
"filename": "__init__.py",
"funcName": "testCase",
"levelname": "INFO",
"levelno": 20,
- "lineno": 327,
+ "lineno": 331,
"message": "REQ-0004",
"module": "__init__",
"moduleLogger": [],
- "msecs": 41.0,
+ "msecs": 662.0,
"msg": "REQ-0004",
"name": "__tLogger__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/report/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/report/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 75.85453987121582,
+ "relativeCreated": 119.756687,
"stack_info": null,
+ "taskName": null,
"testcaseLogger": [
{
"args": [],
- "asctime": "2025-03-23 16:02:24,041",
- "created": 1742742144.0413861,
+ "asctime": "2025-08-14 14:58:32,662",
+ "created": 1755176312.6628714,
"exc_text": null,
"filename": "test_helpers.py",
"funcName": "clean",
@@ -3749,8 +3863,8 @@
"moduleLogger": [
{
"args": [],
- "asctime": "2025-03-23 16:02:24,041",
- "created": 1742742144.0413227,
+ "asctime": "2025-08-14 14:58:32,662",
+ "created": 1755176312.662775,
"exc_text": null,
"filename": "test_helpers.py",
"funcName": "clean",
@@ -3759,50 +3873,52 @@
"lineno": 20,
"message": "Cache file does not exist on filesystem.",
"module": "test_helpers",
- "msecs": 41.0,
+ "msecs": 662.0,
"msg": "Cache file does not exist on filesystem.",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_helpers.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 76.01571083068848,
+ "relativeCreated": 119.963247,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
}
],
- "msecs": 41.0,
+ "msecs": 662.0,
"msg": "Prepare: Cleanup before testcase execution",
"name": "__tLogger__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_helpers.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 76.07913017272949,
+ "relativeCreated": 120.059292,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread",
- "time_consumption": 6.341934204101562e-05
+ "time_consumption": 9.632110595703125e-05
},
{
"args": [
- "6.003138542175293",
+ "6.007658243179321",
""
],
- "asctime": "2025-03-23 16:02:30,045",
- "created": 1742742150.0453987,
+ "asctime": "2025-08-14 14:58:38,671",
+ "created": 1755176318.6712148,
"exc_text": null,
"filename": "test.py",
"funcName": "greater_chk",
"levelname": "INFO",
"levelno": 20,
"lineno": 230,
- "message": "Consumed time for full_update is greater expectation (Content 6.003138542175293 and Type is ).",
+ "message": "Consumed time for full_update is greater expectation (Content 6.007658243179321 and Type is ).",
"module": "test",
"moduleLogger": [
{
"args": [],
- "asctime": "2025-03-23 16:02:24,041",
- "created": 1742742144.0415087,
+ "asctime": "2025-08-14 14:58:32,663",
+ "created": 1755176312.6630664,
"exc_text": null,
"filename": "__init__.py",
"funcName": "_load_cache",
@@ -3811,23 +3927,24 @@
"lineno": 237,
"message": "Cache file does not exists (yet).",
"module": "__init__",
- "msecs": 41.0,
+ "msecs": 663.0,
"msg": "Cache file does not exists (yet).",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 76.2016773223877,
+ "relativeCreated": 120.254452,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
"args": [
"['str', 'unicode', 'integer', 'float', 'list', 'dict', 'none']"
],
- "asctime": "2025-03-23 16:02:24,041",
- "created": 1742742144.0416143,
+ "asctime": "2025-08-14 14:58:32,663",
+ "created": 1755176312.663167,
"exc_text": null,
"filename": "__init__.py",
"funcName": "_load_source",
@@ -3836,23 +3953,24 @@
"lineno": 246,
"message": "Loading all data from source - ['str', 'unicode', 'integer', 'float', 'list', 'dict', 'none']",
"module": "__init__",
- "msecs": 41.0,
+ "msecs": 663.0,
"msg": "Loading all data from source - %s",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 76.30729675292969,
+ "relativeCreated": 120.355178,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
"args": [
"['str', 'unicode', 'integer', 'float', 'list', 'dict', 'none']"
],
- "asctime": "2025-03-23 16:02:24,042",
- "created": 1742742144.0420835,
+ "asctime": "2025-08-14 14:58:32,663",
+ "created": 1755176312.6636105,
"exc_text": null,
"filename": "__init__.py",
"funcName": "_load_source",
@@ -3861,67 +3979,70 @@
"lineno": 246,
"message": "Loading all data from source - ['str', 'unicode', 'integer', 'float', 'list', 'dict', 'none']",
"module": "__init__",
- "msecs": 42.0,
+ "msecs": 663.0,
"msg": "Loading all data from source - %s",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 76.77650451660156,
+ "relativeCreated": 120.798356,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
"args": [
- "/home/dirk/my_repositories/unittest/caching/unittest/output_data/cache_data_test_full_update_sleep.json"
+ "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_full_update_sleep.json"
],
- "asctime": "2025-03-23 16:02:30,044",
- "created": 1742742150.0441172,
+ "asctime": "2025-08-14 14:58:38,670",
+ "created": 1755176318.67032,
"exc_text": null,
"filename": "__init__.py",
"funcName": "_save_only",
"levelname": "DEBUG",
"levelno": 10,
"lineno": 301,
- "message": "cache-file stored (/home/dirk/my_repositories/unittest/caching/unittest/output_data/cache_data_test_full_update_sleep.json)",
+ "message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_full_update_sleep.json)",
"module": "__init__",
- "msecs": 44.0,
+ "msecs": 670.0,
"msg": "cache-file stored (%s)",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6078.810214996338,
+ "relativeCreated": 6127.508348,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
"args": [
"Consumed time for full_update",
- "6.003138542175293",
+ "6.007658243179321",
""
],
- "asctime": "2025-03-23 16:02:30,044",
- "created": 1742742150.0447564,
+ "asctime": "2025-08-14 14:58:38,670",
+ "created": 1755176318.6707983,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
"levelname": "DEBUG",
"levelno": 10,
"lineno": 22,
- "message": "Result (Consumed time for full_update): 6.003138542175293 ()",
+ "message": "Result (Consumed time for full_update): 6.007658243179321 ()",
"module": "test",
- "msecs": 44.0,
+ "msecs": 670.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6079.449415206909,
+ "relativeCreated": 6127.98652,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -3931,8 +4052,8 @@
"6.0",
""
],
- "asctime": "2025-03-23 16:02:30,045",
- "created": 1742742150.045092,
+ "asctime": "2025-08-14 14:58:38,670",
+ "created": 1755176318.6709988,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -3941,71 +4062,74 @@
"lineno": 26,
"message": "Expectation (Consumed time for full_update): result > 6.0 ()",
"module": "test",
- "msecs": 45.0,
+ "msecs": 670.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6079.785108566284,
+ "relativeCreated": 6128.186873,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
}
],
- "msecs": 45.0,
+ "msecs": 671.0,
"msg": "Consumed time for full_update is greater expectation (Content %s and Type is %s).",
"name": "__tLogger__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6080.091714859009,
+ "relativeCreated": 6128.402991,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread",
- "time_consumption": 0.0003066062927246094
+ "time_consumption": 0.00021600723266601562
},
{
"args": [
- "6.003138542175293",
+ "6.007658243179321",
""
],
- "asctime": "2025-03-23 16:02:30,046",
- "created": 1742742150.046279,
+ "asctime": "2025-08-14 14:58:38,671",
+ "created": 1755176318.671857,
"exc_text": null,
"filename": "test.py",
"funcName": "less_chk",
"levelname": "INFO",
"levelno": 20,
"lineno": 207,
- "message": "Consumed time for full_update is greater expectation (Content 6.003138542175293 and Type is ).",
+ "message": "Consumed time for full_update is greater expectation (Content 6.007658243179321 and Type is ).",
"module": "test",
"moduleLogger": [
{
"args": [
"Consumed time for full_update",
- "6.003138542175293",
+ "6.007658243179321",
""
],
- "asctime": "2025-03-23 16:02:30,045",
- "created": 1742742150.0457478,
+ "asctime": "2025-08-14 14:58:38,671",
+ "created": 1755176318.6715243,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
"levelname": "DEBUG",
"levelno": 10,
"lineno": 22,
- "message": "Result (Consumed time for full_update): 6.003138542175293 ()",
+ "message": "Result (Consumed time for full_update): 6.007658243179321 ()",
"module": "test",
- "msecs": 45.0,
+ "msecs": 671.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6080.4407596588135,
+ "relativeCreated": 6128.712475,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -4015,8 +4139,8 @@
"6.5",
""
],
- "asctime": "2025-03-23 16:02:30,045",
- "created": 1742742150.0459425,
+ "asctime": "2025-08-14 14:58:38,671",
+ "created": 1755176318.671684,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -4025,63 +4149,66 @@
"lineno": 26,
"message": "Expectation (Consumed time for full_update): result < 6.5 ()",
"module": "test",
- "msecs": 45.0,
+ "msecs": 671.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6080.635547637939,
+ "relativeCreated": 6128.872209,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
}
],
- "msecs": 46.0,
+ "msecs": 671.0,
"msg": "Consumed time for full_update is greater expectation (Content %s and Type is %s).",
"name": "__tLogger__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6080.971956253052,
+ "relativeCreated": 6129.045149,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread",
- "time_consumption": 0.0003364086151123047
+ "time_consumption": 0.00017309188842773438
}
],
- "thread": 140460812226624,
+ "thread": 140229749231872,
"threadName": "MainThread",
- "time_consumption": 6.005117416381836,
- "time_finished": "2025-03-23 16:02:30,046",
- "time_start": "2025-03-23 16:02:24,041"
+ "time_consumption": 6.009288311004639,
+ "time_finished": "2025-08-14 14:58:38,671",
+ "time_start": "2025-08-14 14:58:32,662"
},
"REQ-0005": {
"args": null,
- "asctime": "2025-03-23 16:02:24,034",
- "created": 1742742144.0340655,
+ "asctime": "2025-08-14 14:58:32,649",
+ "created": 1755176312.6496592,
"exc_text": null,
"filename": "__init__.py",
"funcName": "testCase",
"levelname": "INFO",
"levelno": 20,
- "lineno": 327,
+ "lineno": 331,
"message": "REQ-0005",
"module": "__init__",
"moduleLogger": [],
- "msecs": 34.0,
+ "msecs": 649.0,
"msg": "REQ-0005",
"name": "__tLogger__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/report/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/report/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 68.75848770141602,
+ "relativeCreated": 106.847221,
"stack_info": null,
+ "taskName": null,
"testcaseLogger": [
{
"args": [],
- "asctime": "2025-03-23 16:02:24,034",
- "created": 1742742144.034194,
+ "asctime": "2025-08-14 14:58:32,649",
+ "created": 1755176312.6498413,
"exc_text": null,
"filename": "test_helpers.py",
"funcName": "clean",
@@ -4093,8 +4220,8 @@
"moduleLogger": [
{
"args": [],
- "asctime": "2025-03-23 16:02:24,034",
- "created": 1742742144.034157,
+ "asctime": "2025-08-14 14:58:32,649",
+ "created": 1755176312.6497867,
"exc_text": null,
"filename": "test_helpers.py",
"funcName": "clean",
@@ -4103,36 +4230,38 @@
"lineno": 20,
"message": "Cache file does not exist on filesystem.",
"module": "test_helpers",
- "msecs": 34.0,
+ "msecs": 649.0,
"msg": "Cache file does not exist on filesystem.",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_helpers.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 68.85004043579102,
+ "relativeCreated": 106.974803,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
}
],
- "msecs": 34.0,
+ "msecs": 649.0,
"msg": "Prepare: Cleanup before testcase execution",
"name": "__tLogger__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_helpers.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 68.88699531555176,
+ "relativeCreated": 107.029548,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread",
- "time_consumption": 3.695487976074219e-05
+ "time_consumption": 5.459785461425781e-05
},
{
"args": [
"'property_cache_json'"
],
- "asctime": "2025-03-23 16:02:24,036",
- "created": 1742742144.0367405,
+ "asctime": "2025-08-14 14:58:32,653",
+ "created": 1755176312.6538973,
"exc_text": null,
"filename": "test_cached_data.py",
"funcName": "cached_data",
@@ -4144,8 +4273,8 @@
"moduleLogger": [
{
"args": [],
- "asctime": "2025-03-23 16:02:24,034",
- "created": 1742742144.0342677,
+ "asctime": "2025-08-14 14:58:32,649",
+ "created": 1755176312.6499484,
"exc_text": null,
"filename": "__init__.py",
"funcName": "_load_cache",
@@ -4154,23 +4283,24 @@
"lineno": 237,
"message": "Cache file does not exists (yet).",
"module": "__init__",
- "msecs": 34.0,
+ "msecs": 649.0,
"msg": "Cache file does not exists (yet).",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 68.96066665649414,
+ "relativeCreated": 107.136512,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
"args": [
"str"
],
- "asctime": "2025-03-23 16:02:24,034",
- "created": 1742742144.034319,
+ "asctime": "2025-08-14 14:58:32,650",
+ "created": 1755176312.6500232,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -4179,75 +4309,78 @@
"lineno": 163,
"message": "Loading property for key='str' from source instance",
"module": "__init__",
- "msecs": 34.0,
+ "msecs": 650.0,
"msg": "Loading property for key='%s' from source instance",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 69.01192665100098,
+ "relativeCreated": 107.211308,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
"args": [
"str",
"string",
- 1742742144
+ 1755176312
],
- "asctime": "2025-03-23 16:02:24,034",
- "created": 1742742144.0343575,
+ "asctime": "2025-08-14 14:58:32,650",
+ "created": 1755176312.6500807,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
"levelname": "DEBUG",
"levelno": 10,
"lineno": 167,
- "message": "Adding key=str, value=string with timestamp=1742742144 to chache",
+ "message": "Adding key=str, value=string with timestamp=1755176312 to chache",
"module": "__init__",
- "msecs": 34.0,
+ "msecs": 650.0,
"msg": "Adding key=%s, value=%s with timestamp=%d to chache",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 69.05055046081543,
+ "relativeCreated": 107.268784,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
"args": [
- "/home/dirk/my_repositories/unittest/caching/unittest/output_data/cache_data_test_load_on_init.json"
+ "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_load_on_init.json"
],
- "asctime": "2025-03-23 16:02:24,034",
- "created": 1742742144.0345697,
+ "asctime": "2025-08-14 14:58:32,650",
+ "created": 1755176312.650496,
"exc_text": null,
"filename": "__init__.py",
"funcName": "_save_only",
"levelname": "DEBUG",
"levelno": 10,
"lineno": 301,
- "message": "cache-file stored (/home/dirk/my_repositories/unittest/caching/unittest/output_data/cache_data_test_load_on_init.json)",
+ "message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_load_on_init.json)",
"module": "__init__",
- "msecs": 34.0,
+ "msecs": 650.0,
"msg": "cache-file stored (%s)",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 69.26274299621582,
+ "relativeCreated": 107.684094,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
"args": [
"integer"
],
- "asctime": "2025-03-23 16:02:24,034",
- "created": 1742742144.0346494,
+ "asctime": "2025-08-14 14:58:32,650",
+ "created": 1755176312.650626,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -4256,75 +4389,78 @@
"lineno": 163,
"message": "Loading property for key='integer' from source instance",
"module": "__init__",
- "msecs": 34.0,
+ "msecs": 650.0,
"msg": "Loading property for key='%s' from source instance",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 69.34237480163574,
+ "relativeCreated": 107.81403,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
"args": [
"integer",
17,
- 1742742144
+ 1755176312
],
- "asctime": "2025-03-23 16:02:24,034",
- "created": 1742742144.0346918,
+ "asctime": "2025-08-14 14:58:32,650",
+ "created": 1755176312.6506925,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
"levelname": "DEBUG",
"levelno": 10,
"lineno": 167,
- "message": "Adding key=integer, value=17 with timestamp=1742742144 to chache",
+ "message": "Adding key=integer, value=17 with timestamp=1755176312 to chache",
"module": "__init__",
- "msecs": 34.0,
+ "msecs": 650.0,
"msg": "Adding key=%s, value=%s with timestamp=%d to chache",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 69.38481330871582,
+ "relativeCreated": 107.880555,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
"args": [
- "/home/dirk/my_repositories/unittest/caching/unittest/output_data/cache_data_test_load_on_init.json"
+ "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_load_on_init.json"
],
- "asctime": "2025-03-23 16:02:24,034",
- "created": 1742742144.0348332,
+ "asctime": "2025-08-14 14:58:32,650",
+ "created": 1755176312.6509337,
"exc_text": null,
"filename": "__init__.py",
"funcName": "_save_only",
"levelname": "DEBUG",
"levelno": 10,
"lineno": 301,
- "message": "cache-file stored (/home/dirk/my_repositories/unittest/caching/unittest/output_data/cache_data_test_load_on_init.json)",
+ "message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_load_on_init.json)",
"module": "__init__",
- "msecs": 34.0,
+ "msecs": 650.0,
"msg": "cache-file stored (%s)",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 69.52619552612305,
+ "relativeCreated": 108.121746,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
"args": [
"list"
],
- "asctime": "2025-03-23 16:02:24,034",
- "created": 1742742144.0349295,
+ "asctime": "2025-08-14 14:58:32,651",
+ "created": 1755176312.651078,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -4333,15 +4469,16 @@
"lineno": 163,
"message": "Loading property for key='list' from source instance",
"module": "__init__",
- "msecs": 34.0,
+ "msecs": 651.0,
"msg": "Loading property for key='%s' from source instance",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 69.62251663208008,
+ "relativeCreated": 108.265902,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -4353,60 +4490,62 @@
"3",
4
],
- 1742742144
+ 1755176312
],
- "asctime": "2025-03-23 16:02:24,034",
- "created": 1742742144.0349717,
+ "asctime": "2025-08-14 14:58:32,651",
+ "created": 1755176312.6511426,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
"levelname": "DEBUG",
"levelno": 10,
"lineno": 167,
- "message": "Adding key=list, value=[1, 'two', '3', 4] with timestamp=1742742144 to chache",
+ "message": "Adding key=list, value=[1, 'two', '3', 4] with timestamp=1755176312 to chache",
"module": "__init__",
- "msecs": 34.0,
+ "msecs": 651.0,
"msg": "Adding key=%s, value=%s with timestamp=%d to chache",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 69.66471672058105,
+ "relativeCreated": 108.330685,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
"args": [
- "/home/dirk/my_repositories/unittest/caching/unittest/output_data/cache_data_test_load_on_init.json"
+ "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_load_on_init.json"
],
- "asctime": "2025-03-23 16:02:24,035",
- "created": 1742742144.0359027,
+ "asctime": "2025-08-14 14:58:32,652",
+ "created": 1755176312.6521978,
"exc_text": null,
"filename": "__init__.py",
"funcName": "_save_only",
"levelname": "DEBUG",
"levelno": 10,
"lineno": 301,
- "message": "cache-file stored (/home/dirk/my_repositories/unittest/caching/unittest/output_data/cache_data_test_load_on_init.json)",
+ "message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_load_on_init.json)",
"module": "__init__",
- "msecs": 35.0,
+ "msecs": 652.0,
"msg": "cache-file stored (%s)",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 70.59574127197266,
+ "relativeCreated": 109.38607,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
"args": [
"dict"
],
- "asctime": "2025-03-23 16:02:24,035",
- "created": 1742742144.035992,
+ "asctime": "2025-08-14 14:58:32,652",
+ "created": 1755176312.652368,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -4415,15 +4554,16 @@
"lineno": 163,
"message": "Loading property for key='dict' from source instance",
"module": "__init__",
- "msecs": 35.0,
+ "msecs": 652.0,
"msg": "Loading property for key='%s' from source instance",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 70.68490982055664,
+ "relativeCreated": 109.556221,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -4435,60 +4575,62 @@
"3": "3",
"4": 4
},
- 1742742144
+ 1755176312
],
- "asctime": "2025-03-23 16:02:24,036",
- "created": 1742742144.036035,
+ "asctime": "2025-08-14 14:58:32,652",
+ "created": 1755176312.6524425,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
"levelname": "DEBUG",
"levelno": 10,
"lineno": 167,
- "message": "Adding key=dict, value={'1': 1, '2': 'two', '3': '3', '4': 4} with timestamp=1742742144 to chache",
+ "message": "Adding key=dict, value={'1': 1, '2': 'two', '3': '3', '4': 4} with timestamp=1755176312 to chache",
"module": "__init__",
- "msecs": 36.0,
+ "msecs": 652.0,
"msg": "Adding key=%s, value=%s with timestamp=%d to chache",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 70.72806358337402,
+ "relativeCreated": 109.630581,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
"args": [
- "/home/dirk/my_repositories/unittest/caching/unittest/output_data/cache_data_test_load_on_init.json"
+ "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_load_on_init.json"
],
- "asctime": "2025-03-23 16:02:24,036",
- "created": 1742742144.0362072,
+ "asctime": "2025-08-14 14:58:32,652",
+ "created": 1755176312.6528673,
"exc_text": null,
"filename": "__init__.py",
"funcName": "_save_only",
"levelname": "DEBUG",
"levelno": 10,
"lineno": 301,
- "message": "cache-file stored (/home/dirk/my_repositories/unittest/caching/unittest/output_data/cache_data_test_load_on_init.json)",
+ "message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_load_on_init.json)",
"module": "__init__",
- "msecs": 36.0,
+ "msecs": 652.0,
"msg": "cache-file stored (%s)",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 70.90020179748535,
+ "relativeCreated": 110.05533,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
"args": [
"none"
],
- "asctime": "2025-03-23 16:02:24,036",
- "created": 1742742144.0362914,
+ "asctime": "2025-08-14 14:58:32,653",
+ "created": 1755176312.6530616,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -4497,89 +4639,93 @@
"lineno": 163,
"message": "Loading property for key='none' from source instance",
"module": "__init__",
- "msecs": 36.0,
+ "msecs": 653.0,
"msg": "Loading property for key='%s' from source instance",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 70.9843635559082,
+ "relativeCreated": 110.249849,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
"args": [
"none",
null,
- 1742742144
+ 1755176312
],
- "asctime": "2025-03-23 16:02:24,036",
- "created": 1742742144.0363333,
+ "asctime": "2025-08-14 14:58:32,653",
+ "created": 1755176312.6531684,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
"levelname": "DEBUG",
"levelno": 10,
"lineno": 167,
- "message": "Adding key=none, value=None with timestamp=1742742144 to chache",
+ "message": "Adding key=none, value=None with timestamp=1755176312 to chache",
"module": "__init__",
- "msecs": 36.0,
+ "msecs": 653.0,
"msg": "Adding key=%s, value=%s with timestamp=%d to chache",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 71.02632522583008,
+ "relativeCreated": 110.356448,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
"args": [
- "/home/dirk/my_repositories/unittest/caching/unittest/output_data/cache_data_test_load_on_init.json"
+ "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_load_on_init.json"
],
- "asctime": "2025-03-23 16:02:24,036",
- "created": 1742742144.0365317,
+ "asctime": "2025-08-14 14:58:32,653",
+ "created": 1755176312.6537185,
"exc_text": null,
"filename": "__init__.py",
"funcName": "_save_only",
"levelname": "DEBUG",
"levelno": 10,
"lineno": 301,
- "message": "cache-file stored (/home/dirk/my_repositories/unittest/caching/unittest/output_data/cache_data_test_load_on_init.json)",
+ "message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_load_on_init.json)",
"module": "__init__",
- "msecs": 36.0,
+ "msecs": 653.0,
"msg": "cache-file stored (%s)",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 71.22468948364258,
+ "relativeCreated": 110.90663,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
}
],
- "msecs": 36.0,
+ "msecs": 653.0,
"msg": "Prepare: First usage of %s with a class holding the data to be cached",
"name": "__tLogger__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_cached_data.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_cached_data.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 71.43354415893555,
+ "relativeCreated": 111.085354,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread",
- "time_consumption": 0.00020885467529296875
+ "time_consumption": 0.00017881393432617188
},
{
"args": [
"'string'",
""
],
- "asctime": "2025-03-23 16:02:24,037",
- "created": 1742742144.0370784,
+ "asctime": "2025-08-14 14:58:32,654",
+ "created": 1755176312.6545851,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -4591,35 +4737,36 @@
"moduleLogger": [
{
"args": [
- "/home/dirk/my_repositories/unittest/caching/unittest/output_data/cache_data_test_load_on_init.json"
+ "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_load_on_init.json"
],
- "asctime": "2025-03-23 16:02:24,036",
- "created": 1742742144.036902,
+ "asctime": "2025-08-14 14:58:32,654",
+ "created": 1755176312.6541836,
"exc_text": null,
"filename": "__init__.py",
"funcName": "_load_only",
"levelname": "DEBUG",
"levelno": 10,
"lineno": 296,
- "message": "Loading properties from cache (/home/dirk/my_repositories/unittest/caching/unittest/output_data/cache_data_test_load_on_init.json)",
+ "message": "Loading properties from cache (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_load_on_init.json)",
"module": "__init__",
- "msecs": 36.0,
+ "msecs": 654.0,
"msg": "Loading properties from cache (%s)",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 71.5949535369873,
+ "relativeCreated": 111.371735,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
"args": [
"str"
],
- "asctime": "2025-03-23 16:02:24,036",
- "created": 1742742144.0369604,
+ "asctime": "2025-08-14 14:58:32,654",
+ "created": 1755176312.6543214,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -4628,15 +4775,16 @@
"lineno": 157,
"message": "Providing property for 'str' from cache",
"module": "__init__",
- "msecs": 36.0,
+ "msecs": 654.0,
"msg": "Providing property for '%s' from cache",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 71.65336608886719,
+ "relativeCreated": 111.50958,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -4645,8 +4793,8 @@
"'string'",
""
],
- "asctime": "2025-03-23 16:02:24,037",
- "created": 1742742144.0370066,
+ "asctime": "2025-08-14 14:58:32,654",
+ "created": 1755176312.6544194,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -4655,15 +4803,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=str): 'string' ()",
"module": "test",
- "msecs": 37.0,
+ "msecs": 654.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 71.69961929321289,
+ "relativeCreated": 111.607644,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -4673,8 +4822,8 @@
"'string'",
""
],
- "asctime": "2025-03-23 16:02:24,037",
- "created": 1742742144.0370426,
+ "asctime": "2025-08-14 14:58:32,654",
+ "created": 1755176312.6545172,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -4683,37 +4832,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=str): result = 'string' ()",
"module": "test",
- "msecs": 37.0,
+ "msecs": 654.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 71.73562049865723,
+ "relativeCreated": 111.705396,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
}
],
- "msecs": 37.0,
+ "msecs": 654.0,
"msg": "Data from cached instance with key=str is correct (Content %s and Type is %s).",
"name": "__tLogger__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 71.77138328552246,
+ "relativeCreated": 111.773263,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread",
- "time_consumption": 3.5762786865234375e-05
+ "time_consumption": 6.794929504394531e-05
},
{
"args": [
"'__unicode__'",
""
],
- "asctime": "2025-03-23 16:02:24,037",
- "created": 1742742144.037525,
+ "asctime": "2025-08-14 14:58:32,655",
+ "created": 1755176312.6554353,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -4727,8 +4878,8 @@
"args": [
"unicode"
],
- "asctime": "2025-03-23 16:02:24,037",
- "created": 1742742144.037143,
+ "asctime": "2025-08-14 14:58:32,654",
+ "created": 1755176312.6546922,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -4737,67 +4888,70 @@
"lineno": 163,
"message": "Loading property for key='unicode' from source instance",
"module": "__init__",
- "msecs": 37.0,
+ "msecs": 654.0,
"msg": "Loading property for key='%s' from source instance",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 71.83599472045898,
+ "relativeCreated": 111.880102,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
"args": [
"unicode",
"__unicode__",
- 1742742144
+ 1755176312
],
- "asctime": "2025-03-23 16:02:24,037",
- "created": 1742742144.0371804,
+ "asctime": "2025-08-14 14:58:32,654",
+ "created": 1755176312.6547513,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
"levelname": "DEBUG",
"levelno": 10,
"lineno": 167,
- "message": "Adding key=unicode, value=__unicode__ with timestamp=1742742144 to chache",
+ "message": "Adding key=unicode, value=__unicode__ with timestamp=1755176312 to chache",
"module": "__init__",
- "msecs": 37.0,
+ "msecs": 654.0,
"msg": "Adding key=%s, value=%s with timestamp=%d to chache",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 71.87342643737793,
+ "relativeCreated": 111.939239,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
"args": [
- "/home/dirk/my_repositories/unittest/caching/unittest/output_data/cache_data_test_load_on_init.json"
+ "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_load_on_init.json"
],
- "asctime": "2025-03-23 16:02:24,037",
- "created": 1742742144.0373611,
+ "asctime": "2025-08-14 14:58:32,655",
+ "created": 1755176312.6551409,
"exc_text": null,
"filename": "__init__.py",
"funcName": "_save_only",
"levelname": "DEBUG",
"levelno": 10,
"lineno": 301,
- "message": "cache-file stored (/home/dirk/my_repositories/unittest/caching/unittest/output_data/cache_data_test_load_on_init.json)",
+ "message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_load_on_init.json)",
"module": "__init__",
- "msecs": 37.0,
+ "msecs": 655.0,
"msg": "cache-file stored (%s)",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 72.05414772033691,
+ "relativeCreated": 112.329003,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -4806,8 +4960,8 @@
"'__unicode__'",
""
],
- "asctime": "2025-03-23 16:02:24,037",
- "created": 1742742144.0374434,
+ "asctime": "2025-08-14 14:58:32,655",
+ "created": 1755176312.6553063,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -4816,15 +4970,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=unicode): '__unicode__' ()",
"module": "test",
- "msecs": 37.0,
+ "msecs": 655.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 72.13640213012695,
+ "relativeCreated": 112.494432,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -4834,8 +4989,8 @@
"'__unicode__'",
""
],
- "asctime": "2025-03-23 16:02:24,037",
- "created": 1742742144.0374892,
+ "asctime": "2025-08-14 14:58:32,655",
+ "created": 1755176312.6553776,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -4844,37 +4999,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=unicode): result = '__unicode__' ()",
"module": "test",
- "msecs": 37.0,
+ "msecs": 655.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 72.18217849731445,
+ "relativeCreated": 112.565685,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
}
],
- "msecs": 37.0,
+ "msecs": 655.0,
"msg": "Data from cached instance with key=unicode is correct (Content %s and Type is %s).",
"name": "__tLogger__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 72.21794128417969,
+ "relativeCreated": 112.623485,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread",
- "time_consumption": 3.5762786865234375e-05
+ "time_consumption": 5.7697296142578125e-05
},
{
"args": [
"17",
""
],
- "asctime": "2025-03-23 16:02:24,037",
- "created": 1742742144.0376973,
+ "asctime": "2025-08-14 14:58:32,655",
+ "created": 1755176312.6557062,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -4888,8 +5045,8 @@
"args": [
"integer"
],
- "asctime": "2025-03-23 16:02:24,037",
- "created": 1742742144.0375886,
+ "asctime": "2025-08-14 14:58:32,655",
+ "created": 1755176312.6555376,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -4898,15 +5055,16 @@
"lineno": 157,
"message": "Providing property for 'integer' from cache",
"module": "__init__",
- "msecs": 37.0,
+ "msecs": 655.0,
"msg": "Providing property for '%s' from cache",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 72.2815990447998,
+ "relativeCreated": 112.72586,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -4915,8 +5073,8 @@
"17",
""
],
- "asctime": "2025-03-23 16:02:24,037",
- "created": 1742742144.0376291,
+ "asctime": "2025-08-14 14:58:32,655",
+ "created": 1755176312.6556027,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -4925,15 +5083,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=integer): 17 ()",
"module": "test",
- "msecs": 37.0,
+ "msecs": 655.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 72.32213020324707,
+ "relativeCreated": 112.790658,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -4943,8 +5102,8 @@
"17",
""
],
- "asctime": "2025-03-23 16:02:24,037",
- "created": 1742742144.0376635,
+ "asctime": "2025-08-14 14:58:32,655",
+ "created": 1755176312.6556556,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -4953,37 +5112,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=integer): result = 17 ()",
"module": "test",
- "msecs": 37.0,
+ "msecs": 655.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 72.3564624786377,
+ "relativeCreated": 112.843748,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
}
],
- "msecs": 37.0,
+ "msecs": 655.0,
"msg": "Data from cached instance with key=integer is correct (Content %s and Type is %s).",
"name": "__tLogger__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 72.39031791687012,
+ "relativeCreated": 112.89433,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread",
- "time_consumption": 3.3855438232421875e-05
+ "time_consumption": 5.054473876953125e-05
},
{
"args": [
"2.71828",
""
],
- "asctime": "2025-03-23 16:02:24,038",
- "created": 1742742144.0381722,
+ "asctime": "2025-08-14 14:58:32,656",
+ "created": 1755176312.656518,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -4997,8 +5158,8 @@
"args": [
"float"
],
- "asctime": "2025-03-23 16:02:24,037",
- "created": 1742742144.0377553,
+ "asctime": "2025-08-14 14:58:32,655",
+ "created": 1755176312.6557984,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -5007,67 +5168,70 @@
"lineno": 163,
"message": "Loading property for key='float' from source instance",
"module": "__init__",
- "msecs": 37.0,
+ "msecs": 655.0,
"msg": "Loading property for key='%s' from source instance",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 72.4482536315918,
+ "relativeCreated": 112.986716,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
"args": [
"float",
2.71828,
- 1742742144
+ 1755176312
],
- "asctime": "2025-03-23 16:02:24,037",
- "created": 1742742144.0377917,
+ "asctime": "2025-08-14 14:58:32,655",
+ "created": 1755176312.655855,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
"levelname": "DEBUG",
"levelno": 10,
"lineno": 167,
- "message": "Adding key=float, value=2.71828 with timestamp=1742742144 to chache",
+ "message": "Adding key=float, value=2.71828 with timestamp=1755176312 to chache",
"module": "__init__",
- "msecs": 37.0,
+ "msecs": 655.0,
"msg": "Adding key=%s, value=%s with timestamp=%d to chache",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 72.48473167419434,
+ "relativeCreated": 113.042855,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
"args": [
- "/home/dirk/my_repositories/unittest/caching/unittest/output_data/cache_data_test_load_on_init.json"
+ "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_load_on_init.json"
],
- "asctime": "2025-03-23 16:02:24,037",
- "created": 1742742144.0379856,
+ "asctime": "2025-08-14 14:58:32,656",
+ "created": 1755176312.6562545,
"exc_text": null,
"filename": "__init__.py",
"funcName": "_save_only",
"levelname": "DEBUG",
"levelno": 10,
"lineno": 301,
- "message": "cache-file stored (/home/dirk/my_repositories/unittest/caching/unittest/output_data/cache_data_test_load_on_init.json)",
+ "message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_load_on_init.json)",
"module": "__init__",
- "msecs": 37.0,
+ "msecs": 656.0,
"msg": "cache-file stored (%s)",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 72.6785659790039,
+ "relativeCreated": 113.442464,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -5076,8 +5240,8 @@
"2.71828",
""
],
- "asctime": "2025-03-23 16:02:24,038",
- "created": 1742742144.0380845,
+ "asctime": "2025-08-14 14:58:32,656",
+ "created": 1755176312.6563969,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -5086,15 +5250,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=float): 2.71828 ()",
"module": "test",
- "msecs": 38.0,
+ "msecs": 656.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 72.77750968933105,
+ "relativeCreated": 113.58477,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -5104,8 +5269,8 @@
"2.71828",
""
],
- "asctime": "2025-03-23 16:02:24,038",
- "created": 1742742144.038135,
+ "asctime": "2025-08-14 14:58:32,656",
+ "created": 1755176312.6564622,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -5114,37 +5279,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=float): result = 2.71828 ()",
"module": "test",
- "msecs": 38.0,
+ "msecs": 656.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 72.82805442810059,
+ "relativeCreated": 113.65014,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
}
],
- "msecs": 38.0,
+ "msecs": 656.0,
"msg": "Data from cached instance with key=float is correct (Content %s and Type is %s).",
"name": "__tLogger__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 72.86524772644043,
+ "relativeCreated": 113.705869,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread",
- "time_consumption": 3.719329833984375e-05
+ "time_consumption": 5.5789947509765625e-05
},
{
"args": [
"[1, 'two', '3', 4]",
""
],
- "asctime": "2025-03-23 16:02:24,038",
- "created": 1742742144.0383735,
+ "asctime": "2025-08-14 14:58:32,656",
+ "created": 1755176312.656825,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -5158,8 +5325,8 @@
"args": [
"list"
],
- "asctime": "2025-03-23 16:02:24,038",
- "created": 1742742144.0382357,
+ "asctime": "2025-08-14 14:58:32,656",
+ "created": 1755176312.6566195,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -5168,15 +5335,16 @@
"lineno": 157,
"message": "Providing property for 'list' from cache",
"module": "__init__",
- "msecs": 38.0,
+ "msecs": 656.0,
"msg": "Providing property for '%s' from cache",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 72.92866706848145,
+ "relativeCreated": 113.80774,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -5185,8 +5353,8 @@
"[ 1, 'two', '3', 4 ]",
""
],
- "asctime": "2025-03-23 16:02:24,038",
- "created": 1742742144.0382833,
+ "asctime": "2025-08-14 14:58:32,656",
+ "created": 1755176312.656692,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -5195,15 +5363,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=list): [ 1, 'two', '3', 4 ] ()",
"module": "test",
- "msecs": 38.0,
+ "msecs": 656.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 72.97635078430176,
+ "relativeCreated": 113.880173,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -5213,8 +5382,8 @@
"[ 1, 'two', '3', 4 ]",
""
],
- "asctime": "2025-03-23 16:02:24,038",
- "created": 1742742144.038323,
+ "asctime": "2025-08-14 14:58:32,656",
+ "created": 1755176312.6567519,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -5223,37 +5392,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=list): result = [ 1, 'two', '3', 4 ] ()",
"module": "test",
- "msecs": 38.0,
+ "msecs": 656.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 73.01592826843262,
+ "relativeCreated": 113.939926,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
}
],
- "msecs": 38.0,
+ "msecs": 656.0,
"msg": "Data from cached instance with key=list is correct (Content %s and Type is %s).",
"name": "__tLogger__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 73.06647300720215,
+ "relativeCreated": 114.013118,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread",
- "time_consumption": 5.054473876953125e-05
+ "time_consumption": 7.319450378417969e-05
},
{
"args": [
"{'1': 1, '2': 'two', '3': '3', '4': 4}",
""
],
- "asctime": "2025-03-23 16:02:24,038",
- "created": 1742742144.0385706,
+ "asctime": "2025-08-14 14:58:32,657",
+ "created": 1755176312.6571276,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -5267,8 +5438,8 @@
"args": [
"dict"
],
- "asctime": "2025-03-23 16:02:24,038",
- "created": 1742742144.0384326,
+ "asctime": "2025-08-14 14:58:32,656",
+ "created": 1755176312.65692,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -5277,15 +5448,16 @@
"lineno": 157,
"message": "Providing property for 'dict' from cache",
"module": "__init__",
- "msecs": 38.0,
+ "msecs": 656.0,
"msg": "Providing property for '%s' from cache",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 73.12560081481934,
+ "relativeCreated": 114.108034,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -5294,8 +5466,8 @@
"{ '1': 1, '2': 'two', '3': '3', '4': 4 }",
""
],
- "asctime": "2025-03-23 16:02:24,038",
- "created": 1742742144.0384808,
+ "asctime": "2025-08-14 14:58:32,656",
+ "created": 1755176312.6569922,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -5304,15 +5476,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=dict): { '1': 1, '2': 'two', '3': '3', '4': 4 } ()",
"module": "test",
- "msecs": 38.0,
+ "msecs": 656.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 73.17376136779785,
+ "relativeCreated": 114.180326,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -5322,8 +5495,8 @@
"{ '1': 1, '2': 'two', '3': '3', '4': 4 }",
""
],
- "asctime": "2025-03-23 16:02:24,038",
- "created": 1742742144.0385225,
+ "asctime": "2025-08-14 14:58:32,657",
+ "created": 1755176312.6570554,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -5332,37 +5505,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=dict): result = { '1': 1, '2': 'two', '3': '3', '4': 4 } ()",
"module": "test",
- "msecs": 38.0,
+ "msecs": 657.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 73.21548461914062,
+ "relativeCreated": 114.243673,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
}
],
- "msecs": 38.0,
+ "msecs": 657.0,
"msg": "Data from cached instance with key=dict is correct (Content %s and Type is %s).",
"name": "__tLogger__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 73.26364517211914,
+ "relativeCreated": 114.315867,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread",
- "time_consumption": 4.8160552978515625e-05
+ "time_consumption": 7.224082946777344e-05
},
{
"args": [
"None",
""
],
- "asctime": "2025-03-23 16:02:24,038",
- "created": 1742742144.03877,
+ "asctime": "2025-08-14 14:58:32,657",
+ "created": 1755176312.6573818,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -5376,8 +5551,8 @@
"args": [
"none"
],
- "asctime": "2025-03-23 16:02:24,038",
- "created": 1742742144.0386283,
+ "asctime": "2025-08-14 14:58:32,657",
+ "created": 1755176312.6572149,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -5386,15 +5561,16 @@
"lineno": 157,
"message": "Providing property for 'none' from cache",
"module": "__init__",
- "msecs": 38.0,
+ "msecs": 657.0,
"msg": "Providing property for '%s' from cache",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 73.32134246826172,
+ "relativeCreated": 114.403091,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -5403,8 +5579,8 @@
"None",
""
],
- "asctime": "2025-03-23 16:02:24,038",
- "created": 1742742144.0386686,
+ "asctime": "2025-08-14 14:58:32,657",
+ "created": 1755176312.6572766,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -5413,15 +5589,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=none): None ()",
"module": "test",
- "msecs": 38.0,
+ "msecs": 657.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 73.36163520812988,
+ "relativeCreated": 114.464796,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -5431,8 +5608,8 @@
"None",
""
],
- "asctime": "2025-03-23 16:02:24,038",
- "created": 1742742144.0387154,
+ "asctime": "2025-08-14 14:58:32,657",
+ "created": 1755176312.6573281,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -5441,37 +5618,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=none): result = None ()",
"module": "test",
- "msecs": 38.0,
+ "msecs": 657.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 73.40836524963379,
+ "relativeCreated": 114.516156,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
}
],
- "msecs": 38.0,
+ "msecs": 657.0,
"msg": "Data from cached instance with key=none is correct (Content %s and Type is %s).",
"name": "__tLogger__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 73.46296310424805,
+ "relativeCreated": 114.570022,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread",
- "time_consumption": 5.459785461425781e-05
+ "time_consumption": 5.364418029785156e-05
},
{
"args": [
"5",
""
],
- "asctime": "2025-03-23 16:02:24,038",
- "created": 1742742144.0389867,
+ "asctime": "2025-08-14 14:58:32,657",
+ "created": 1755176312.657637,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -5485,8 +5664,8 @@
"args": [
"unknown_key"
],
- "asctime": "2025-03-23 16:02:24,038",
- "created": 1742742144.038863,
+ "asctime": "2025-08-14 14:58:32,657",
+ "created": 1755176312.6574714,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -5495,15 +5674,16 @@
"lineno": 179,
"message": "Key 'unknown_key' is not in cached_keys. Uncached data will be returned.",
"module": "__init__",
- "msecs": 38.0,
+ "msecs": 657.0,
"msg": "Key '%s' is not in cached_keys. Uncached data will be returned.",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 73.55594635009766,
+ "relativeCreated": 114.659577,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -5512,8 +5692,8 @@
"5",
""
],
- "asctime": "2025-03-23 16:02:24,038",
- "created": 1742742144.0389106,
+ "asctime": "2025-08-14 14:58:32,657",
+ "created": 1755176312.657531,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -5522,15 +5702,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=unknown_key): 5 ()",
"module": "test",
- "msecs": 38.0,
+ "msecs": 657.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 73.60363006591797,
+ "relativeCreated": 114.719217,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -5540,8 +5721,8 @@
"5",
""
],
- "asctime": "2025-03-23 16:02:24,038",
- "created": 1742742144.038949,
+ "asctime": "2025-08-14 14:58:32,657",
+ "created": 1755176312.6575863,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -5550,63 +5731,66 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=unknown_key): result = 5 ()",
"module": "test",
- "msecs": 38.0,
+ "msecs": 657.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 73.64201545715332,
+ "relativeCreated": 114.77445,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
}
],
- "msecs": 38.0,
+ "msecs": 657.0,
"msg": "Data from cached instance with key=unknown_key is correct (Content %s and Type is %s).",
"name": "__tLogger__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 73.67968559265137,
+ "relativeCreated": 114.825033,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread",
- "time_consumption": 3.7670135498046875e-05
+ "time_consumption": 5.054473876953125e-05
}
],
- "thread": 140460812226624,
+ "thread": 140229749231872,
"threadName": "MainThread",
- "time_consumption": 0.0049211978912353516,
- "time_finished": "2025-03-23 16:02:24,038",
- "time_start": "2025-03-23 16:02:24,034"
+ "time_consumption": 0.007977724075317383,
+ "time_finished": "2025-08-14 14:58:32,657",
+ "time_start": "2025-08-14 14:58:32,649"
},
"REQ-0006": {
"args": null,
- "asctime": "2025-03-23 16:02:30,059",
- "created": 1742742150.0599756,
+ "asctime": "2025-08-14 14:58:38,680",
+ "created": 1755176318.680951,
"exc_text": null,
"filename": "__init__.py",
"funcName": "testCase",
"levelname": "INFO",
"levelno": 20,
- "lineno": 327,
+ "lineno": 331,
"message": "REQ-0006",
"module": "__init__",
"moduleLogger": [],
- "msecs": 59.0,
+ "msecs": 680.0,
"msg": "REQ-0006",
"name": "__tLogger__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/report/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/report/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6094.668626785278,
+ "relativeCreated": 6138.139059,
"stack_info": null,
+ "taskName": null,
"testcaseLogger": [
{
"args": [],
- "asctime": "2025-03-23 16:02:30,060",
- "created": 1742742150.0606878,
+ "asctime": "2025-08-14 14:58:38,681",
+ "created": 1755176318.681744,
"exc_text": null,
"filename": "test_helpers.py",
"funcName": "clean",
@@ -5618,8 +5802,8 @@
"moduleLogger": [
{
"args": [],
- "asctime": "2025-03-23 16:02:30,060",
- "created": 1742742150.0603704,
+ "asctime": "2025-08-14 14:58:38,681",
+ "created": 1755176318.6814256,
"exc_text": null,
"filename": "test_helpers.py",
"funcName": "clean",
@@ -5628,36 +5812,38 @@
"lineno": 17,
"message": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
"module": "test_helpers",
- "msecs": 60.0,
+ "msecs": 681.0,
"msg": "Deleting cache file from filesystem to ensure identical conditions for each test run.",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_helpers.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6095.0634479522705,
+ "relativeCreated": 6138.61379,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
}
],
- "msecs": 60.0,
+ "msecs": 681.0,
"msg": "Prepare: Cleanup before testcase execution",
"name": "__tLogger__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_helpers.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_helpers.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6095.380783081055,
+ "relativeCreated": 6138.932299,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread",
- "time_consumption": 0.0003173351287841797
+ "time_consumption": 0.0003185272216796875
},
{
"args": [
"'property_cache_json'"
],
- "asctime": "2025-03-23 16:02:30,063",
- "created": 1742742150.0638645,
+ "asctime": "2025-08-14 14:58:38,684",
+ "created": 1755176318.6843255,
"exc_text": null,
"filename": "test_dump_cache.py",
"funcName": "dump_cache",
@@ -5669,8 +5855,8 @@
"moduleLogger": [
{
"args": [],
- "asctime": "2025-03-23 16:02:30,061",
- "created": 1742742150.061043,
+ "asctime": "2025-08-14 14:58:38,682",
+ "created": 1755176318.6820495,
"exc_text": null,
"filename": "__init__.py",
"funcName": "_load_cache",
@@ -5679,23 +5865,24 @@
"lineno": 237,
"message": "Cache file does not exists (yet).",
"module": "__init__",
- "msecs": 61.0,
+ "msecs": 682.0,
"msg": "Cache file does not exists (yet).",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6095.736026763916,
+ "relativeCreated": 6139.237648,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
"args": [
"['str', 'unicode', 'integer', 'float', 'list', 'dict', 'none']"
],
- "asctime": "2025-03-23 16:02:30,061",
- "created": 1742742150.0612636,
+ "asctime": "2025-08-14 14:58:38,682",
+ "created": 1755176318.682298,
"exc_text": null,
"filename": "__init__.py",
"funcName": "_load_source",
@@ -5704,62 +5891,65 @@
"lineno": 246,
"message": "Loading all data from source - ['str', 'unicode', 'integer', 'float', 'list', 'dict', 'none']",
"module": "__init__",
- "msecs": 61.0,
+ "msecs": 682.0,
"msg": "Loading all data from source - %s",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6095.956563949585,
+ "relativeCreated": 6139.485825,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
"args": [
- "/home/dirk/my_repositories/unittest/caching/unittest/output_data/cache_data_test_dump_cache.json"
+ "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json"
],
- "asctime": "2025-03-23 16:02:30,063",
- "created": 1742742150.0635054,
+ "asctime": "2025-08-14 14:58:38,684",
+ "created": 1755176318.6840131,
"exc_text": null,
"filename": "__init__.py",
"funcName": "_save_only",
"levelname": "DEBUG",
"levelno": 10,
"lineno": 301,
- "message": "cache-file stored (/home/dirk/my_repositories/unittest/caching/unittest/output_data/cache_data_test_dump_cache.json)",
+ "message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json)",
"module": "__init__",
- "msecs": 63.0,
+ "msecs": 684.0,
"msg": "cache-file stored (%s)",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6098.198413848877,
+ "relativeCreated": 6141.201105,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
}
],
- "msecs": 63.0,
+ "msecs": 684.0,
"msg": "Prepare: First usage of %s with a class holding the data to be cached",
"name": "__tLogger__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/tests/test_dump_cache.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/tests/test_dump_cache.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6098.557472229004,
+ "relativeCreated": 6141.513442,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread",
- "time_consumption": 0.0003590583801269531
+ "time_consumption": 0.0003123283386230469
},
{
"args": [
"'string'",
""
],
- "asctime": "2025-03-23 16:02:30,065",
- "created": 1742742150.0651627,
+ "asctime": "2025-08-14 14:58:38,686",
+ "created": 1755176318.686122,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -5771,35 +5961,36 @@
"moduleLogger": [
{
"args": [
- "/home/dirk/my_repositories/unittest/caching/unittest/output_data/cache_data_test_dump_cache.json"
+ "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json"
],
- "asctime": "2025-03-23 16:02:30,064",
- "created": 1742742150.0645046,
+ "asctime": "2025-08-14 14:58:38,685",
+ "created": 1755176318.6850662,
"exc_text": null,
"filename": "__init__.py",
"funcName": "_load_only",
"levelname": "DEBUG",
"levelno": 10,
"lineno": 296,
- "message": "Loading properties from cache (/home/dirk/my_repositories/unittest/caching/unittest/output_data/cache_data_test_dump_cache.json)",
+ "message": "Loading properties from cache (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json)",
"module": "__init__",
- "msecs": 64.0,
+ "msecs": 685.0,
"msg": "Loading properties from cache (%s)",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6099.197626113892,
+ "relativeCreated": 6142.254256,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
"args": [
"str"
],
- "asctime": "2025-03-23 16:02:30,064",
- "created": 1742742150.064753,
+ "asctime": "2025-08-14 14:58:38,685",
+ "created": 1755176318.6854544,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -5808,15 +5999,16 @@
"lineno": 157,
"message": "Providing property for 'str' from cache",
"module": "__init__",
- "msecs": 64.0,
+ "msecs": 685.0,
"msg": "Providing property for '%s' from cache",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6099.446058273315,
+ "relativeCreated": 6142.642338,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -5825,8 +6017,8 @@
"'string'",
""
],
- "asctime": "2025-03-23 16:02:30,064",
- "created": 1742742150.06495,
+ "asctime": "2025-08-14 14:58:38,685",
+ "created": 1755176318.685692,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -5835,15 +6027,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=str): 'string' ()",
"module": "test",
- "msecs": 64.0,
+ "msecs": 685.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6099.642992019653,
+ "relativeCreated": 6142.880318,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -5853,8 +6046,8 @@
"'string'",
""
],
- "asctime": "2025-03-23 16:02:30,065",
- "created": 1742742150.0650575,
+ "asctime": "2025-08-14 14:58:38,685",
+ "created": 1755176318.6859288,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -5863,37 +6056,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=str): result = 'string' ()",
"module": "test",
- "msecs": 65.0,
+ "msecs": 685.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6099.750518798828,
+ "relativeCreated": 6143.116863,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
}
],
- "msecs": 65.0,
+ "msecs": 686.0,
"msg": "Data from cached instance with key=str is correct (Content %s and Type is %s).",
"name": "__tLogger__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6099.855661392212,
+ "relativeCreated": 6143.309988,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread",
- "time_consumption": 0.00010514259338378906
+ "time_consumption": 0.00019311904907226562
},
{
"args": [
"'unicode'",
""
],
- "asctime": "2025-03-23 16:02:30,065",
- "created": 1742742150.0656846,
+ "asctime": "2025-08-14 14:58:38,686",
+ "created": 1755176318.686651,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -5907,8 +6102,8 @@
"args": [
"unicode"
],
- "asctime": "2025-03-23 16:02:30,065",
- "created": 1742742150.065357,
+ "asctime": "2025-08-14 14:58:38,686",
+ "created": 1755176318.6864054,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -5917,15 +6112,16 @@
"lineno": 157,
"message": "Providing property for 'unicode' from cache",
"module": "__init__",
- "msecs": 65.0,
+ "msecs": 686.0,
"msg": "Providing property for '%s' from cache",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6100.04997253418,
+ "relativeCreated": 6143.593534,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -5934,8 +6130,8 @@
"'unicode'",
""
],
- "asctime": "2025-03-23 16:02:30,065",
- "created": 1742742150.0654795,
+ "asctime": "2025-08-14 14:58:38,686",
+ "created": 1755176318.6864984,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -5944,15 +6140,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=unicode): 'unicode' ()",
"module": "test",
- "msecs": 65.0,
+ "msecs": 686.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6100.172519683838,
+ "relativeCreated": 6143.686366,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -5962,8 +6159,8 @@
"'unicode'",
""
],
- "asctime": "2025-03-23 16:02:30,065",
- "created": 1742742150.065582,
+ "asctime": "2025-08-14 14:58:38,686",
+ "created": 1755176318.6865659,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -5972,37 +6169,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=unicode): result = 'unicode' ()",
"module": "test",
- "msecs": 65.0,
+ "msecs": 686.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6100.275039672852,
+ "relativeCreated": 6143.754063,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
}
],
- "msecs": 65.0,
+ "msecs": 686.0,
"msg": "Data from cached instance with key=unicode is correct (Content %s and Type is %s).",
"name": "__tLogger__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6100.377559661865,
+ "relativeCreated": 6143.838879,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread",
- "time_consumption": 0.00010251998901367188
+ "time_consumption": 8.511543273925781e-05
},
{
"args": [
"17",
""
],
- "asctime": "2025-03-23 16:02:30,066",
- "created": 1742742150.0663786,
+ "asctime": "2025-08-14 14:58:38,686",
+ "created": 1755176318.6869836,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -6016,8 +6215,8 @@
"args": [
"integer"
],
- "asctime": "2025-03-23 16:02:30,065",
- "created": 1742742150.0658631,
+ "asctime": "2025-08-14 14:58:38,686",
+ "created": 1755176318.6867685,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -6026,15 +6225,16 @@
"lineno": 157,
"message": "Providing property for 'integer' from cache",
"module": "__init__",
- "msecs": 65.0,
+ "msecs": 686.0,
"msg": "Providing property for '%s' from cache",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6100.556135177612,
+ "relativeCreated": 6143.956695,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -6043,8 +6243,8 @@
"17",
""
],
- "asctime": "2025-03-23 16:02:30,065",
- "created": 1742742150.0659885,
+ "asctime": "2025-08-14 14:58:38,686",
+ "created": 1755176318.6868546,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -6053,15 +6253,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=integer): 17 ()",
"module": "test",
- "msecs": 65.0,
+ "msecs": 686.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6100.68154335022,
+ "relativeCreated": 6144.042723,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -6071,8 +6272,8 @@
"17",
""
],
- "asctime": "2025-03-23 16:02:30,066",
- "created": 1742742150.0661793,
+ "asctime": "2025-08-14 14:58:38,686",
+ "created": 1755176318.6869202,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -6081,37 +6282,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=integer): result = 17 ()",
"module": "test",
- "msecs": 66.0,
+ "msecs": 686.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6100.872278213501,
+ "relativeCreated": 6144.108276,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
}
],
- "msecs": 66.0,
+ "msecs": 686.0,
"msg": "Data from cached instance with key=integer is correct (Content %s and Type is %s).",
"name": "__tLogger__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6101.07159614563,
+ "relativeCreated": 6144.171786,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread",
- "time_consumption": 0.00019931793212890625
+ "time_consumption": 6.341934204101562e-05
},
{
"args": [
"3.14159",
""
],
- "asctime": "2025-03-23 16:02:30,067",
- "created": 1742742150.067109,
+ "asctime": "2025-08-14 14:58:38,687",
+ "created": 1755176318.687302,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -6125,8 +6328,8 @@
"args": [
"float"
],
- "asctime": "2025-03-23 16:02:30,066",
- "created": 1742742150.066706,
+ "asctime": "2025-08-14 14:58:38,687",
+ "created": 1755176318.6870894,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -6135,15 +6338,16 @@
"lineno": 157,
"message": "Providing property for 'float' from cache",
"module": "__init__",
- "msecs": 66.0,
+ "msecs": 687.0,
"msg": "Providing property for '%s' from cache",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6101.398944854736,
+ "relativeCreated": 6144.277596,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -6152,8 +6356,8 @@
"3.14159",
""
],
- "asctime": "2025-03-23 16:02:30,066",
- "created": 1742742150.0668578,
+ "asctime": "2025-08-14 14:58:38,687",
+ "created": 1755176318.6871734,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -6162,15 +6366,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=float): 3.14159 ()",
"module": "test",
- "msecs": 66.0,
+ "msecs": 687.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6101.550817489624,
+ "relativeCreated": 6144.361454,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -6180,8 +6385,8 @@
"3.14159",
""
],
- "asctime": "2025-03-23 16:02:30,066",
- "created": 1742742150.0669687,
+ "asctime": "2025-08-14 14:58:38,687",
+ "created": 1755176318.6872394,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -6190,37 +6395,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=float): result = 3.14159 ()",
"module": "test",
- "msecs": 66.0,
+ "msecs": 687.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6101.661682128906,
+ "relativeCreated": 6144.427511,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
}
],
- "msecs": 67.0,
+ "msecs": 687.0,
"msg": "Data from cached instance with key=float is correct (Content %s and Type is %s).",
"name": "__tLogger__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6101.802110671997,
+ "relativeCreated": 6144.490125,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread",
- "time_consumption": 0.0001404285430908203
+ "time_consumption": 6.270408630371094e-05
},
{
"args": [
"[1, 'two', '3', 4]",
""
],
- "asctime": "2025-03-23 16:02:30,067",
- "created": 1742742150.067858,
+ "asctime": "2025-08-14 14:58:38,687",
+ "created": 1755176318.687728,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -6234,8 +6441,8 @@
"args": [
"list"
],
- "asctime": "2025-03-23 16:02:30,067",
- "created": 1742742150.0673633,
+ "asctime": "2025-08-14 14:58:38,687",
+ "created": 1755176318.6874278,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -6244,15 +6451,16 @@
"lineno": 157,
"message": "Providing property for 'list' from cache",
"module": "__init__",
- "msecs": 67.0,
+ "msecs": 687.0,
"msg": "Providing property for '%s' from cache",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6102.056264877319,
+ "relativeCreated": 6144.616023,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -6261,8 +6469,8 @@
"[ 1, 'two', '3', 4 ]",
""
],
- "asctime": "2025-03-23 16:02:30,067",
- "created": 1742742150.0675752,
+ "asctime": "2025-08-14 14:58:38,687",
+ "created": 1755176318.687531,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -6271,15 +6479,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=list): [ 1, 'two', '3', 4 ] ()",
"module": "test",
- "msecs": 67.0,
+ "msecs": 687.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6102.268218994141,
+ "relativeCreated": 6144.719118,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -6289,8 +6498,8 @@
"[ 1, 'two', '3', 4 ]",
""
],
- "asctime": "2025-03-23 16:02:30,067",
- "created": 1742742150.0677001,
+ "asctime": "2025-08-14 14:58:38,687",
+ "created": 1755176318.6876245,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -6299,37 +6508,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=list): result = [ 1, 'two', '3', 4 ] ()",
"module": "test",
- "msecs": 67.0,
+ "msecs": 687.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6102.39315032959,
+ "relativeCreated": 6144.812516,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
}
],
- "msecs": 67.0,
+ "msecs": 687.0,
"msg": "Data from cached instance with key=list is correct (Content %s and Type is %s).",
"name": "__tLogger__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6102.550983428955,
+ "relativeCreated": 6144.916091,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread",
- "time_consumption": 0.00015783309936523438
+ "time_consumption": 0.00010347366333007812
},
{
"args": [
"{'1': 1, '2': 'two', '3': '3', '4': 4}",
""
],
- "asctime": "2025-03-23 16:02:30,068",
- "created": 1742742150.0684955,
+ "asctime": "2025-08-14 14:58:38,688",
+ "created": 1755176318.6881487,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -6343,8 +6554,8 @@
"args": [
"dict"
],
- "asctime": "2025-03-23 16:02:30,068",
- "created": 1742742150.0680764,
+ "asctime": "2025-08-14 14:58:38,687",
+ "created": 1755176318.6878567,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -6353,15 +6564,16 @@
"lineno": 157,
"message": "Providing property for 'dict' from cache",
"module": "__init__",
- "msecs": 68.0,
+ "msecs": 687.0,
"msg": "Providing property for '%s' from cache",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6102.769374847412,
+ "relativeCreated": 6145.044729,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -6370,8 +6582,8 @@
"{ '1': 1, '2': 'two', '3': '3', '4': 4 }",
""
],
- "asctime": "2025-03-23 16:02:30,068",
- "created": 1742742150.0682232,
+ "asctime": "2025-08-14 14:58:38,687",
+ "created": 1755176318.68796,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -6380,15 +6592,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=dict): { '1': 1, '2': 'two', '3': '3', '4': 4 } ()",
"module": "test",
- "msecs": 68.0,
+ "msecs": 687.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6102.916240692139,
+ "relativeCreated": 6145.147937,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -6398,8 +6611,8 @@
"{ '1': 1, '2': 'two', '3': '3', '4': 4 }",
""
],
- "asctime": "2025-03-23 16:02:30,068",
- "created": 1742742150.0683527,
+ "asctime": "2025-08-14 14:58:38,688",
+ "created": 1755176318.6880457,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -6408,37 +6621,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=dict): result = { '1': 1, '2': 'two', '3': '3', '4': 4 } ()",
"module": "test",
- "msecs": 68.0,
+ "msecs": 688.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6103.045701980591,
+ "relativeCreated": 6145.233946,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
}
],
- "msecs": 68.0,
+ "msecs": 688.0,
"msg": "Data from cached instance with key=dict is correct (Content %s and Type is %s).",
"name": "__tLogger__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6103.188514709473,
+ "relativeCreated": 6145.336785,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread",
- "time_consumption": 0.00014281272888183594
+ "time_consumption": 0.000102996826171875
},
{
"args": [
"None",
""
],
- "asctime": "2025-03-23 16:02:30,069",
- "created": 1742742150.0690122,
+ "asctime": "2025-08-14 14:58:38,688",
+ "created": 1755176318.6885614,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -6452,8 +6667,8 @@
"args": [
"none"
],
- "asctime": "2025-03-23 16:02:30,068",
- "created": 1742742150.0686855,
+ "asctime": "2025-08-14 14:58:38,688",
+ "created": 1755176318.688295,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -6462,15 +6677,16 @@
"lineno": 157,
"message": "Providing property for 'none' from cache",
"module": "__init__",
- "msecs": 68.0,
+ "msecs": 688.0,
"msg": "Providing property for '%s' from cache",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6103.378534317017,
+ "relativeCreated": 6145.482986,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -6479,8 +6695,8 @@
"None",
""
],
- "asctime": "2025-03-23 16:02:30,068",
- "created": 1742742150.0688066,
+ "asctime": "2025-08-14 14:58:38,688",
+ "created": 1755176318.688395,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -6489,15 +6705,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=none): None ()",
"module": "test",
- "msecs": 68.0,
+ "msecs": 688.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6103.4996509552,
+ "relativeCreated": 6145.583054,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -6507,8 +6724,8 @@
"None",
""
],
- "asctime": "2025-03-23 16:02:30,068",
- "created": 1742742150.0689137,
+ "asctime": "2025-08-14 14:58:38,688",
+ "created": 1755176318.6884844,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -6517,37 +6734,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=none): result = None ()",
"module": "test",
- "msecs": 68.0,
+ "msecs": 688.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6103.606700897217,
+ "relativeCreated": 6145.672499,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
}
],
- "msecs": 69.0,
+ "msecs": 688.0,
"msg": "Data from cached instance with key=none is correct (Content %s and Type is %s).",
"name": "__tLogger__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 6103.705167770386,
+ "relativeCreated": 6145.749523,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread",
- "time_consumption": 9.846687316894531e-05
+ "time_consumption": 7.700920104980469e-05
},
{
"args": [
"'__string__'",
""
],
- "asctime": "2025-03-23 16:02:32,069",
- "created": 1742742152.069987,
+ "asctime": "2025-08-14 14:58:40,691",
+ "created": 1755176320.691619,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -6559,8 +6778,8 @@
"moduleLogger": [
{
"args": [],
- "asctime": "2025-03-23 16:02:32,069",
- "created": 1742742152.0693223,
+ "asctime": "2025-08-14 14:58:40,688",
+ "created": 1755176320.6889791,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -6569,23 +6788,24 @@
"lineno": 154,
"message": "The cached value is old, cached value will be ignored",
"module": "__init__",
- "msecs": 69.0,
+ "msecs": 688.0,
"msg": "The cached value is old, cached value will be ignored",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 8104.015350341797,
+ "relativeCreated": 8146.167277,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
"args": [
"str"
],
- "asctime": "2025-03-23 16:02:32,069",
- "created": 1742742152.069439,
+ "asctime": "2025-08-14 14:58:40,689",
+ "created": 1755176320.689246,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -6594,67 +6814,70 @@
"lineno": 163,
"message": "Loading property for key='str' from source instance",
"module": "__init__",
- "msecs": 69.0,
+ "msecs": 689.0,
"msg": "Loading property for key='%s' from source instance",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 8104.1319370269775,
+ "relativeCreated": 8146.433937,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
"args": [
"str",
"__string__",
- 1742742152
+ 1755176320
],
- "asctime": "2025-03-23 16:02:32,069",
- "created": 1742742152.0694895,
+ "asctime": "2025-08-14 14:58:40,689",
+ "created": 1755176320.6894248,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
"levelname": "DEBUG",
"levelno": 10,
"lineno": 167,
- "message": "Adding key=str, value=__string__ with timestamp=1742742152 to chache",
+ "message": "Adding key=str, value=__string__ with timestamp=1755176320 to chache",
"module": "__init__",
- "msecs": 69.0,
+ "msecs": 689.0,
"msg": "Adding key=%s, value=%s with timestamp=%d to chache",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 8104.182481765747,
+ "relativeCreated": 8146.612697,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
"args": [
- "/home/dirk/my_repositories/unittest/caching/unittest/output_data/cache_data_test_dump_cache.json"
+ "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json"
],
- "asctime": "2025-03-23 16:02:32,069",
- "created": 1742742152.0697587,
+ "asctime": "2025-08-14 14:58:40,690",
+ "created": 1755176320.6907468,
"exc_text": null,
"filename": "__init__.py",
"funcName": "_save_only",
"levelname": "DEBUG",
"levelno": 10,
"lineno": 301,
- "message": "cache-file stored (/home/dirk/my_repositories/unittest/caching/unittest/output_data/cache_data_test_dump_cache.json)",
+ "message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json)",
"module": "__init__",
- "msecs": 69.0,
+ "msecs": 690.0,
"msg": "cache-file stored (%s)",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 8104.451656341553,
+ "relativeCreated": 8147.934919,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -6663,8 +6886,8 @@
"'__string__'",
""
],
- "asctime": "2025-03-23 16:02:32,069",
- "created": 1742742152.0698907,
+ "asctime": "2025-08-14 14:58:40,691",
+ "created": 1755176320.691274,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_result__",
@@ -6673,15 +6896,16 @@
"lineno": 22,
"message": "Result (Data from cached instance with key=str): '__string__' ()",
"module": "test",
- "msecs": 69.0,
+ "msecs": 691.0,
"msg": "Result (%s): %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 8104.583740234375,
+ "relativeCreated": 8148.461984,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -6691,8 +6915,8 @@
"'__string__'",
""
],
- "asctime": "2025-03-23 16:02:32,069",
- "created": 1742742152.0699477,
+ "asctime": "2025-08-14 14:58:40,691",
+ "created": 1755176320.6914618,
"exc_text": null,
"filename": "test.py",
"funcName": "__report_expectation__",
@@ -6701,37 +6925,39 @@
"lineno": 26,
"message": "Expectation (Data from cached instance with key=str): result = '__string__' ()",
"module": "test",
- "msecs": 69.0,
+ "msecs": 691.0,
"msg": "Expectation (%s): result %s %s (%s)",
"name": "__unittest__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 8104.64072227478,
+ "relativeCreated": 8148.649981,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
}
],
- "msecs": 69.0,
+ "msecs": 691.0,
"msg": "Data from cached instance with key=str is correct (Content %s and Type is %s).",
"name": "__tLogger__",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/unittest/test.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/unittest/test.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 8104.680061340332,
+ "relativeCreated": 8148.806897,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread",
- "time_consumption": 3.933906555175781e-05
+ "time_consumption": 0.0001571178436279297
},
{
"args": [
"'__unicode__'",
""
],
- "asctime": "2025-03-23 16:02:32,071",
- "created": 1742742152.071064,
+ "asctime": "2025-08-14 14:58:40,693",
+ "created": 1755176320.693916,
"exc_text": null,
"filename": "test.py",
"funcName": "equivalency_chk",
@@ -6743,8 +6969,8 @@
"moduleLogger": [
{
"args": [],
- "asctime": "2025-03-23 16:02:32,070",
- "created": 1742742152.0700912,
+ "asctime": "2025-08-14 14:58:40,691",
+ "created": 1755176320.6919038,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -6753,23 +6979,24 @@
"lineno": 154,
"message": "The cached value is old, cached value will be ignored",
"module": "__init__",
- "msecs": 70.0,
+ "msecs": 691.0,
"msg": "The cached value is old, cached value will be ignored",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 8104.784250259399,
+ "relativeCreated": 8149.091913,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
"args": [
"unicode"
],
- "asctime": "2025-03-23 16:02:32,070",
- "created": 1742742152.070127,
+ "asctime": "2025-08-14 14:58:40,692",
+ "created": 1755176320.6920881,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
@@ -6778,67 +7005,70 @@
"lineno": 163,
"message": "Loading property for key='unicode' from source instance",
"module": "__init__",
- "msecs": 70.0,
+ "msecs": 692.0,
"msg": "Loading property for key='%s' from source instance",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 8104.820013046265,
+ "relativeCreated": 8149.276033,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
"args": [
"unicode",
"__unicode__",
- 1742742152
+ 1755176320
],
- "asctime": "2025-03-23 16:02:32,070",
- "created": 1742742152.0701625,
+ "asctime": "2025-08-14 14:58:40,692",
+ "created": 1755176320.692238,
"exc_text": null,
"filename": "__init__.py",
"funcName": "get",
"levelname": "DEBUG",
"levelno": 10,
"lineno": 167,
- "message": "Adding key=unicode, value=__unicode__ with timestamp=1742742152 to chache",
+ "message": "Adding key=unicode, value=__unicode__ with timestamp=1755176320 to chache",
"module": "__init__",
- "msecs": 70.0,
+ "msecs": 692.0,
"msg": "Adding key=%s, value=%s with timestamp=%d to chache",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 8104.855537414551,
+ "relativeCreated": 8149.426129,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
"args": [
- "/home/dirk/my_repositories/unittest/caching/unittest/output_data/cache_data_test_dump_cache.json"
+ "/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json"
],
- "asctime": "2025-03-23 16:02:32,070",
- "created": 1742742152.0708914,
+ "asctime": "2025-08-14 14:58:40,693",
+ "created": 1755176320.6932256,
"exc_text": null,
"filename": "__init__.py",
"funcName": "_save_only",
"levelname": "DEBUG",
"levelno": 10,
"lineno": 301,
- "message": "cache-file stored (/home/dirk/my_repositories/unittest/caching/unittest/output_data/cache_data_test_dump_cache.json)",
+ "message": "cache-file stored (/home/dirk/work/unittest_collection/caching/unittest/output_data/cache_data_test_dump_cache.json)",
"module": "__init__",
- "msecs": 70.0,
+ "msecs": 693.0,
"msg": "cache-file stored (%s)",
"name": "caching",
- "pathname": "/home/dirk/my_repositories/unittest/caching/unittest/src/caching/__init__.py",
- "process": 159943,
+ "pathname": "/home/dirk/work/unittest_collection/caching/unittest/src/caching/__init__.py",
+ "process": 743412,
"processName": "MainProcess",
- "relativeCreated": 8105.584383010864,
+ "relativeCreated": 8150.413902,
"stack_info": null,
- "thread": 140460812226624,
+ "taskName": null,
+ "thread": 140229749231872,
"threadName": "MainThread"
},
{
@@ -6847,8 +7077,8 @@
"'__unicode__'",
"