Table of Contents
Test Report
View CI Run 2747 | Commit e5dfe83 ✅ Pytest completed successfully
All tests were collected and executed properly. See the details below.
📋 Short test summary info
=========================== short test summary info ============================
FAILED tests/test_utils_debug.py::test_short_repr[aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa-10-'aaaaaaaaaa...] - assert "'aaaaaaaaa..." == "'aaaaaaaaaa..."
- 'aaaaaaaaaa...
? -
+ 'aaaaaaaaa...
FAILED tests/test_utils_debug.py::test_short_repr[value5-20-Obj(xxxxxxxxxxxxxxxxx...] - AssertionError: assert 'Obj(xxxxxxxxxxxxxxxx...' == 'Obj(xxxxxxxxxxxxxxxxx...'
- Obj(xxxxxxxxxxxxxxxxx...
? -
+ Obj(xxxxxxxxxxxxxxxx...
FAILED tests/test_utils_get_adj.py::test_get_adjs_filter - AssertionError: assert {'contrast', ...mid_contrast'} == {'brightness'...mid_contrast'}
Extra items in the right set:
'brightness'
Full diff:
{
- 'brightness',
'contrast',
'mid_brightness',
'mid_contrast',
}
FAILED tests/test_utils_logcfg.py::test_import_logging_once_per_module - AssertionError: Expected 1 import log for 'math', found 0
assert 0 == 1
FAILED tests/test_utils_shortcut.py::TestShortcutsSingleton::test_registration - assert 3 == 2
+ where 3 = len({'<lambda>': Shortcut "<lambda>", 'FuncA': Shortcut "FuncA", 'FuncB': Shortcut "FuncB"})
+ where {'<lambda>': Shortcut "<lambda>", 'FuncA': Shortcut "FuncA", 'FuncB': Shortcut "FuncB"} = _get()
+ where _get = <lambda>: Shortcut "<lambda>"\nFuncA: Shortcut "FuncA"\nFuncB: Shortcut "FuncB"\n._get
FAILED tests/test_utils_shortcut.py::TestFullIntegration::test_multiple_shortcuts - assert 5 == 2
+ where 5 = len({'<lambda>': Shortcut "<lambda>", 'First': Shortcut "First", 'FuncA': Shortcut "FuncA", 'FuncB': Shortcut "FuncB", ...})
+ where {'<lambda>': Shortcut "<lambda>", 'First': Shortcut "First", 'FuncA': Shortcut "FuncA", 'FuncB': Shortcut "FuncB", ...} = _get()
+ where _get = <lambda>: Shortcut "<lambda>"\nFirst: Shortcut "First"\nFuncA: Shortcut "FuncA"\nFuncB: Shortcut "FuncB"\nSecond: Shortcut "Second"\n._get
FAILED tests/test_utils_tqdm_mod.py::test_float_alignment_in_bar - assert 3 == 1
+ where 3 = len({50, 64, 65})
+ where {50, 64, 65} = set([50, 64, 64, 65, 65])
================== 7 failed, 522 passed, 3 warnings in 10.08s ==================
🪵 Full raw pytest log
============================= test session starts ==============================
platform linux -- Python 3.8.20, pytest-8.3.4, pluggy-1.5.0
rootdir: /workspace/tligui_y/slic
plugins: time-machine-2.15.0, metadata-3.1.1, cov-5.0.0, json-report-1.5.0, typeguard-4.3.0
collected 529 items
morbidissimo/morbidissimo/morioc/test_infer_type.py .................... [ 3%]
............ [ 6%]
tests/test_utils_argfwd.py ............................ [ 11%]
tests/test_utils_ask_yes_no.py ........................................ [ 18%]
tests/test_utils_channels.py . [ 19%]
tests/test_utils_config.py .. [ 19%]
tests/test_utils_cpint.py ........................ [ 24%]
tests/test_utils_dbusnotify.py ....... [ 25%]
tests/test_utils_debug.py ......F...F [ 27%]
tests/test_utils_dictext.py ................. [ 30%]
tests/test_utils_dotdir.py ... [ 31%]
tests/test_utils_duo.py ........... [ 33%]
tests/test_utils_elog.py ..... [ 34%]
tests/test_utils_eval.py ...................................... [ 41%]
tests/test_utils_exceptions.py .......... [ 43%]
tests/test_utils_get_adj.py ...F [ 44%]
tests/test_utils_ipy.py . [ 44%]
tests/test_utils_jsonext.py ........ [ 45%]
tests/test_utils_lazypv.py . [ 45%]
tests/test_utils_logcfg.py ..F [ 46%]
tests/test_utils_logign.py ..... [ 47%]
tests/test_utils_marker.py ............. [ 49%]
tests/test_utils_metaclasses.py .. [ 50%]
tests/test_utils_namespace.py . [ 50%]
tests/test_utils_npy.py ................................................ [ 59%]
...... [ 60%]
tests/test_utils_path.py ..... [ 61%]
tests/test_utils_picklio.py ....... [ 62%]
tests/test_utils_printing.py ....................................... [ 70%]
tests/test_utils_rangebar.py ................. [ 73%]
tests/test_utils_readable.py ........................ [ 78%]
tests/test_utils_registry.py ........ [ 79%]
tests/test_utils_richcfg.py . [ 79%]
tests/test_utils_run_later.py .................. [ 83%]
tests/test_utils_sendmail.py .. [ 83%]
tests/test_utils_sendsms.py . [ 83%]
tests/test_utils_shortcut.py ..........F....F. [ 86%]
tests/test_utils_snapshot.py ........ [ 88%]
tests/test_utils_termtitle.py . [ 88%]
tests/test_utils_tqdm_mod.py ...F... [ 89%]
tests/test_utils_trinary.py ... [ 90%]
tests/test_utils_typecast.py ......... [ 92%]
tests/test_utils_utils.py .................................. [ 98%]
tests/test_utils_xrange.py ....... [100%]
=================================== FAILURES ===================================
_ test_short_repr[aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa-10-'aaaaaaaaaa...] _
value = 'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa'
cutoff = 10, expected = "'aaaaaaaaaa..."
@pytest.mark.parametrize(
"value, cutoff, expected",
[
("abc", 10, "'abc'"),
("a" * 100, 10, "'aaaaaaaaaa..."),
(12345, 10, "12345"),
([0]*100, 15, str(repr([0]*100))[:15] + "..."),
(None, 10, "None"),
(type("Obj", (), {"__repr__": lambda self: "Obj(" + "x"*50 + ")"})(), 20, "Obj(xxxxxxxxxxxxxxxxx..."),
]
)
def test_short_repr(value, cutoff, expected):
> assert short_repr(value, cutoff) == expected
E assert "'aaaaaaaaa..." == "'aaaaaaaaaa..."
E
E - 'aaaaaaaaaa...
E ? -
E + 'aaaaaaaaa...
tests/test_utils_debug.py:66: AssertionError
_____________ test_short_repr[value5-20-Obj(xxxxxxxxxxxxxxxxx...] ______________
value = Obj(xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx), cutoff = 20
expected = 'Obj(xxxxxxxxxxxxxxxxx...'
@pytest.mark.parametrize(
"value, cutoff, expected",
[
("abc", 10, "'abc'"),
("a" * 100, 10, "'aaaaaaaaaa..."),
(12345, 10, "12345"),
([0]*100, 15, str(repr([0]*100))[:15] + "..."),
(None, 10, "None"),
(type("Obj", (), {"__repr__": lambda self: "Obj(" + "x"*50 + ")"})(), 20, "Obj(xxxxxxxxxxxxxxxxx..."),
]
)
def test_short_repr(value, cutoff, expected):
> assert short_repr(value, cutoff) == expected
E AssertionError: assert 'Obj(xxxxxxxxxxxxxxxx...' == 'Obj(xxxxxxxxxxxxxxxxx...'
E
E - Obj(xxxxxxxxxxxxxxxxx...
E ? -
E + Obj(xxxxxxxxxxxxxxxx...
tests/test_utils_debug.py:66: AssertionError
_____________________________ test_get_adjs_filter _____________________________
def test_get_adjs_filter():
a4 = SubAdjustable("mid_brightness", units="%", limit_low=0, limit_high=100)
a5 = SubAdjustable("debug_internal", internal=True)
public = get_adjs()
> assert set(public) == {'brightness', 'contrast', 'mid_contrast', 'mid_brightness'}
E AssertionError: assert {'contrast', ...mid_contrast'} == {'brightness'...mid_contrast'}
E
E Extra items in the right set:
E 'brightness'
E
E Full diff:
E {
E - 'brightness',
E 'contrast',
E 'mid_brightness',
E 'mid_contrast',
E }
tests/test_utils_get_adj.py:42: AssertionError
_____________________ test_import_logging_once_per_module ______________________
def test_import_logging_once_per_module():
code = textwrap.dedent("""
from slic.utils.logcfg import *
import math
import io
import random
""")
with tempfile.NamedTemporaryFile("w", suffix=".py", delete=False) as tmp:
tmp.write(code)
tmp_path = tmp.name
env = os.environ.copy()
root_path = os.path.abspath(os.path.join(os.path.dirname(__file__), '..'))
env["PYTHONPATH"] = root_path + os.pathsep + env.get("PYTHONPATH", "")
result = subprocess.run([sys.executable, tmp_path], capture_output=True, text=True, env=env)
os.remove(tmp_path)
assert result.returncode == 0, f"Script failed:\n{result.stderr}"
stderr = result.stderr
print(stderr)
lines = stderr.splitlines()
for mod in ["math", "io", "random"]:
count = sum(1 for line in lines if f"importing: {mod}" in line)
> assert count == 1, f"Expected 1 import log for '{mod}', found {count}"
E AssertionError: Expected 1 import log for 'math', found 0
E assert 0 == 1
tests/test_utils_logcfg.py:78: AssertionError
----------------------------- Captured stdout call -----------------------------
[E 250829 13:04:49 tools:40] cannot assign endstation to IP 172.18.0.3 (bc5a97ddab18)
[W 250829 13:04:49 pvpreload:38] PV preload file not loaded due to: FileNotFoundError: [Errno 2] No such file or directory: '/root/.slic/pvpreload'
___________________ TestShortcutsSingleton.test_registration ___________________
self = <test_utils_shortcut.TestShortcutsSingleton object at 0x7fb00a181160>
def test_registration(self):
# Test automatic registration
@as_shortcut(name="FuncA")
def func_a():
pass
@as_shortcut(name="FuncB")
def func_b():
pass
> assert len(shortcuts._get()) == 2
E assert 3 == 2
E + where 3 = len({'<lambda>': Shortcut "<lambda>", 'FuncA': Shortcut "FuncA", 'FuncB': Shortcut "FuncB"})
E + where {'<lambda>': Shortcut "<lambda>", 'FuncA': Shortcut "FuncA", 'FuncB': Shortcut "FuncB"} = _get()
E + where _get = <lambda>: Shortcut "<lambda>"\nFuncA: Shortcut "FuncA"\nFuncB: Shortcut "FuncB"\n._get
tests/test_utils_shortcut.py:138: AssertionError
_________________ TestFullIntegration.test_multiple_shortcuts __________________
self = <test_utils_shortcut.TestFullIntegration object at 0x7fb008bde7c0>
def test_multiple_shortcuts(self):
# Test multiple shortcuts coexistence
@as_shortcut(name="First")
def first():
return 1
@as_shortcut(name="Second")
def second():
return 2
assert shortcuts["First"].func() == 1
assert shortcuts["Second"].func() == 2
> assert len(shortcuts._get()) == 2
E assert 5 == 2
E + where 5 = len({'<lambda>': Shortcut "<lambda>", 'First': Shortcut "First", 'FuncA': Shortcut "FuncA", 'FuncB': Shortcut "FuncB", ...})
E + where {'<lambda>': Shortcut "<lambda>", 'First': Shortcut "First", 'FuncA': Shortcut "FuncA", 'FuncB': Shortcut "FuncB", ...} = _get()
E + where _get = <lambda>: Shortcut "<lambda>"\nFirst: Shortcut "First"\nFuncA: Shortcut "FuncA"\nFuncB: Shortcut "FuncB"\nSecond: Shortcut "Second"\n._get
tests/test_utils_shortcut.py:203: AssertionError
_________________________ test_float_alignment_in_bar __________________________
def test_float_alignment_in_bar():
# Capture the tqdm output into a string buffer
f = io.StringIO()
with redirect_stdout(f):
bar = tqdm_mod(total=100.12, desc="AlignBar", file=f, miniters=1, mininterval=0)
bar.set(1.3333)
bar.set(12.5)
bar.set(99.89)
bar.set(100.12)
bar.close()
# Extract lines containing the label
lines = extract_lines(f.getvalue(), "AlignBar")
# Expected formatted values using format_sizeof
expected_values = [
"1.3/100.1",
"12.5/100.1",
"99.9/100.1",
"100.1/100.1",
]
# Extract the actual padded float/total strings from the full lines
values = []
for line in lines:
match = re.search(r"(\d{1,3}\.\d)/100\.1", line)
if match:
values.append(match.group(0))
# Ensure raw 100.12 never appears : format_sizeof must have truncated it
assert all("100.12" not in line for line in lines), "Unrounded value '100.12' found in output!"
# Check all expected values appear rounded as expected by format_sizeof
for expected in expected_values:
assert expected in values, f"Missing expected value: {expected}"
# Check that all values are visually aligned, output with same length, to ensure that format_sizeof add the good number avec spaces
print("\n")
bar_segments = []
for line in lines:
match = re.search(r".*?\]", line)
if match:
bar_segments.append(match.group(0))
print(match.group(0))
lengths = [len(seg) for seg in bar_segments]
> assert len(set(lengths)) == 1
E assert 3 == 1
E + where 3 = len({50, 64, 65})
E + where {50, 64, 65} = set([50, 64, 64, 65, 65])
tests/test_utils_tqdm_mod.py:130: AssertionError
----------------------------- Captured stdout call -----------------------------
AlignBar: 0%| | 0/100.1 [00:00<?, ? Hz]
AlignBar: 1%|1 | 1.3/100.1 [00:00<00:00, 57063.9 Hz]
AlignBar: 12%|#2 | 12.5/100.1 [00:00<00:00, 77176.3 Hz]
AlignBar: 100%|#########9| 99.9/100.1 [00:00<00:00, 413512.0 Hz]
AlignBar: 100%|##########| 100.1/100.1 [00:00<00:00, 216015.3 Hz]
=============================== warnings summary ===============================
.pixi/envs/default/lib/python3.8/site-packages/bsread/h5.py:207
/workspace/tligui_y/slic/.pixi/envs/default/lib/python3.8/site-packages/bsread/h5.py:207: DeprecationWarning: invalid escape sequence \-
if not re.match('^tcp://[a-zA-Z.\-0-9]+:[0-9]+$', address):
.pixi/envs/default/lib/python3.8/site-packages/scipy/fft/__init__.py:97
/workspace/tligui_y/slic/.pixi/envs/default/lib/python3.8/site-packages/scipy/fft/__init__.py:97: DeprecationWarning: The module numpy.dual is deprecated. Instead of using dual, use the functions directly from numpy or scipy.
from numpy.dual import register_func
tests/test_utils_pv.py:12
/workspace/tligui_y/slic/tests/test_utils_pv.py:12: DeprecationWarning: invalid escape sequence \[
'''
-- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html
Generated on 2025-08-29 15:04:55 CEST
🧾 General Info
- duration: 10.063403129577637
- root: /workspace/tligui_y/slic
- environment: {}
📋 Summary
- Passed: 522
- Failed: 7
- Total: 529
- Collected: 529
🔎 Tests
✅ Passed (522)
-
📄 morbidissimo/morbidissimo/morioc/test_infer_type.py
↳ Function: test_it_type_str
-
✅ Test 1
📌 Setup phase
duration:
0.0008651474490761757outcome:
passed📌 Call phase
duration:
0.00029168277978897095outcome:
passed📌 Teardown phase
duration:
0.0002603726461529732outcome:
passed
↳ Function: test_it_type_float
-
✅ Test 2
📌 Setup phase
duration:
0.00018248148262500763outcome:
passed📌 Call phase
duration:
0.0001955544576048851outcome:
passed📌 Teardown phase
duration:
0.00013924390077590942outcome:
passed
↳ Function: test_it_type_int
-
✅ Test 3
📌 Setup phase
duration:
0.00015974324196577072outcome:
passed📌 Call phase
duration:
0.00018119532614946365outcome:
passed📌 Teardown phase
duration:
0.00013494957238435745outcome:
passed
↳ Function: test_it_value_str
-
✅ Test 4
📌 Setup phase
duration:
0.0001468714326620102outcome:
passed📌 Call phase
duration:
0.00018298067152500153outcome:
passed📌 Teardown phase
duration:
0.00012946594506502151outcome:
passed
↳ Function: test_it_value_long_str
-
✅ Test 5
📌 Setup phase
duration:
0.00016351789236068726outcome:
passed📌 Call phase
duration:
0.00018185749650001526outcome:
passed📌 Teardown phase
duration:
0.0001364024356007576outcome:
passed
↳ Function: test_it_value_float
-
✅ Test 6
📌 Setup phase
duration:
0.00014600995928049088outcome:
passed📌 Call phase
duration:
0.00020564906299114227outcome:
passed📌 Teardown phase
duration:
0.00015246961265802383outcome:
passed
↳ Function: test_it_value_int
-
✅ Test 7
📌 Setup phase
duration:
0.00015087798237800598outcome:
passed📌 Call phase
duration:
0.0001954454928636551outcome:
passed📌 Teardown phase
duration:
0.0001344289630651474outcome:
passed
↳ Function: test_it_empty_value_str
-
✅ Test 8
📌 Setup phase
duration:
0.00014032423496246338outcome:
passed📌 Call phase
duration:
0.00017510633915662766outcome:
passed📌 Teardown phase
duration:
0.00013430137187242508outcome:
passed
↳ Function: test_it_empty_value_float
-
✅ Test 9
📌 Setup phase
duration:
0.00014057010412216187outcome:
passed📌 Call phase
duration:
0.00016700010746717453outcome:
passed📌 Teardown phase
duration:
0.00013637635856866837outcome:
passed
↳ Function: test_it_empty_value_int
-
✅ Test 10
📌 Setup phase
duration:
0.0001441342756152153outcome:
passed📌 Call phase
duration:
0.00016864854842424393outcome:
passed📌 Teardown phase
duration:
0.00013096444308757782outcome:
passed
↳ Function: test_pstrue_str
-
✅ Test 11
📌 Setup phase
duration:
0.00013728067278862outcome:
passed📌 Call phase
duration:
0.00018476787954568863outcome:
passed📌 Teardown phase
duration:
0.00013345107436180115outcome:
passed
↳ Function: test_pstrue_float
-
✅ Test 12
📌 Setup phase
duration:
0.00013631954789161682outcome:
passed📌 Call phase
duration:
0.00021485239267349243outcome:
passed📌 Teardown phase
duration:
0.00014359690248966217outcome:
passed
↳ Function: test_pstrue_int
-
✅ Test 13
📌 Setup phase
duration:
0.00014233030378818512outcome:
passed📌 Call phase
duration:
0.0001780809834599495outcome:
passed📌 Teardown phase
duration:
0.00012948829680681229outcome:
passed
↳ Function: test_psfalse_str
-
✅ Test 14
📌 Setup phase
duration:
0.00014474336057901382outcome:
passed📌 Call phase
duration:
0.000176149420440197outcome:
passed📌 Teardown phase
duration:
0.0001302957534790039outcome:
passed
↳ Function: test_psfalse_float
-
✅ Test 15
📌 Setup phase
duration:
0.00013909488916397095outcome:
passed📌 Call phase
duration:
0.0001695677638053894outcome:
passed📌 Teardown phase
duration:
0.00012971181422472outcome:
passed
↳ Function: test_psfalse_int
-
✅ Test 16
📌 Setup phase
duration:
0.00014172866940498352outcome:
passed📌 Call phase
duration:
0.0001880517229437828outcome:
passed📌 Teardown phase
duration:
0.000130445696413517outcome:
passed
↳ Function: test_it_None
-
✅ Test 17
📌 Setup phase
duration:
0.00015015341341495514outcome:
passed📌 Call phase
duration:
0.00021325144916772842outcome:
passed📌 Teardown phase
duration:
0.00013133790343999863outcome:
passed
↳ Function: test_it_True
-
✅ Test 18
📌 Setup phase
duration:
0.00016153324395418167outcome:
passed📌 Call phase
duration:
0.00018268637359142303outcome:
passed📌 Teardown phase
duration:
0.00013237912207841873outcome:
passed
↳ Function: test_it_False
-
✅ Test 19
📌 Setup phase
duration:
0.00014160200953483582outcome:
passed📌 Call phase
duration:
0.0003764322027564049outcome:
passed📌 Teardown phase
duration:
0.00018144864588975906outcome:
passed
↳ Function: test_it_nan
-
✅ Test 20
📌 Setup phase
duration:
0.00015408173203468323outcome:
passed📌 Call phase
duration:
0.0001829918473958969outcome:
passed📌 Teardown phase
duration:
0.00013645831495523453outcome:
passed
↳ Function: test_it_np_nan
-
✅ Test 21
📌 Setup phase
duration:
0.00014137662947177887outcome:
passed📌 Call phase
duration:
0.00016973819583654404outcome:
passed📌 Teardown phase
duration:
0.00013775937259197235outcome:
passed
↳ Function: test_it_np1D_int
-
✅ Test 22
📌 Setup phase
duration:
0.0001437729224562645outcome:
passed📌 Call phase
duration:
0.0002665054053068161outcome:
passed📌 Teardown phase
duration:
0.00013506505638360977outcome:
passed
↳ Function: test_it_np2D_int
-
✅ Test 23
📌 Setup phase
duration:
0.00015244446694850922outcome:
passed📌 Call phase
duration:
0.00022954493761062622outcome:
passed📌 Teardown phase
duration:
0.00013521965593099594outcome:
passed
↳ Function: test_it_np1D_float
-
✅ Test 24
📌 Setup phase
duration:
0.00013867206871509552outcome:
passed📌 Call phase
duration:
0.00030194874852895737outcome:
passed📌 Teardown phase
duration:
0.00014909915626049042outcome:
passed
↳ Function: test_it_np2D_float
-
✅ Test 25
📌 Setup phase
duration:
0.00015082303434610367outcome:
passed📌 Call phase
duration:
0.00024665985256433487outcome:
passed📌 Teardown phase
duration:
0.00013407878577709198outcome:
passed
↳ Function: test_it_np1D_bool
-
✅ Test 26
📌 Setup phase
duration:
0.0001484658569097519outcome:
passed📌 Call phase
duration:
0.0002053501084446907outcome:
passed📌 Teardown phase
duration:
0.00015023164451122284outcome:
passed
↳ Function: test_it_np1D_object
-
✅ Test 27
📌 Setup phase
duration:
0.00015832949429750443outcome:
passed📌 Call phase
duration:
0.00019365549087524414outcome:
passed📌 Teardown phase
duration:
0.00014691520482301712outcome:
passed
↳ Function: test_it_np_scalar_int
-
✅ Test 28
📌 Setup phase
duration:
0.0001511555165052414outcome:
passed📌 Call phase
duration:
0.00023007579147815704outcome:
passed📌 Teardown phase
duration:
0.00013986695557832718outcome:
passed
↳ Function: test_it_np_scalar_float
-
✅ Test 29
📌 Setup phase
duration:
0.000140446238219738outcome:
passed📌 Call phase
duration:
0.00022641196846961975outcome:
passed📌 Teardown phase
duration:
0.000138930045068264outcome:
passed
↳ Function: test_it_np_scalar_bool
-
✅ Test 30
📌 Setup phase
duration:
0.00014541950076818466outcome:
passed📌 Call phase
duration:
0.00024093035608530045outcome:
passed📌 Teardown phase
duration:
0.0001317393034696579outcome:
passed
↳ Function: test_it_list
-
✅ Test 31
📌 Setup phase
duration:
0.0001395968720316887outcome:
passed📌 Call phase
duration:
0.00019385013729333878outcome:
passed📌 Teardown phase
duration:
0.00013413000851869583outcome:
passed
↳ Function: test_it_tuple
-
✅ Test 32
📌 Setup phase
duration:
0.00014092400670051575outcome:
passed📌 Call phase
duration:
0.00018963497132062912outcome:
passed📌 Teardown phase
duration:
0.00013854354619979858outcome:
passed
-
-
📄 test_utils_argfwd.py
↳ Function: test_split_at
-
✅ Test 33
params:lst=["a", "b", "c", "d"], index=2, expected=[["a", "b"], ["c", "d"]]📌 Parameters
params: lst: ["a", "b", "c", "d"] index: 2 expected: [["a", "b"], ["c", "d"]] id: "lst0-2-expected0"📌 Setup phase
duration:
0.0004776371642947197outcome:
passed📌 Call phase
duration:
0.00019135884940624237outcome:
passed📌 Teardown phase
duration:
0.00020928122103214264outcome:
passed -
✅ Test 34
params:lst=["x", "y"], index=1, expected=[["x"], ["y"]]📌 Parameters
params: lst: ["x", "y"] index: 1 expected: [["x"], ["y"]] id: "lst1-1-expected1"📌 Setup phase
duration:
0.0003258315846323967outcome:
passed📌 Call phase
duration:
0.000187617726624012outcome:
passed📌 Teardown phase
duration:
0.00019406434148550034outcome:
passed -
✅ Test 35
params:lst=[], index=0, expected=[[], []]📌 Parameters
params: lst: [] index: 0 expected: [[], []] id: "lst2-0-expected2"📌 Setup phase
duration:
0.0003191642463207245outcome:
passed📌 Call phase
duration:
0.00017584394663572311outcome:
passed📌 Teardown phase
duration:
0.0002002120018005371outcome:
passed
↳ Function: test_merge_lists_unique
-
✅ Test 36
params:a=["a", "b"], b=["b", "c"], expected=["a", "b", "c"]📌 Parameters
params: a: ["a", "b"] b: ["b", "c"] expected: ["a", "b", "c"] id: "a0-b0-expected0"📌 Setup phase
duration:
0.00030300021171569824outcome:
passed📌 Call phase
duration:
0.00018137134611606598outcome:
passed📌 Teardown phase
duration:
0.00021462980657815933outcome:
passed -
✅ Test 37
params:a=[], b=["x"], expected=["x"]📌 Parameters
params: a: [] b: ["x"] expected: ["x"] id: "a1-b1-expected1"📌 Setup phase
duration:
0.000325862318277359outcome:
passed📌 Call phase
duration:
0.0001903977245092392outcome:
passed📌 Teardown phase
duration:
0.00019167084246873856outcome:
passed -
✅ Test 38
params:a=["x", "y"], b=["x", "y"], expected=["x", "y"]📌 Parameters
params: a: ["x", "y"] b: ["x", "y"] expected: ["x", "y"] id: "a2-b2-expected2"📌 Setup phase
duration:
0.0003075338900089264outcome:
passed📌 Call phase
duration:
0.00017153751105070114outcome:
passed📌 Teardown phase
duration:
0.00020456872880458832outcome:
passed
↳ Function: test_merge_dicts_unique
-
✅ Test 39
params:a={"a": 1}, b={"b": 2}, expected={"a": 1, "b": 2}📌 Parameters
params: a: {"a": 1} b: {"b": 2} expected: {"a": 1, "b": 2} id: "a0-b0-expected0"📌 Setup phase
duration:
0.00030965451151132584outcome:
passed📌 Call phase
duration:
0.00017432309687137604outcome:
passed📌 Teardown phase
duration:
0.00018490012735128403outcome:
passed -
✅ Test 40
params:a={"x": 1}, b={"x": 9, "y": 3}, expected={"x": 1, "y": 3}📌 Parameters
params: a: {"x": 1} b: {"x": 9, "y": 3} expected: {"x": 1, "y": 3} id: "a1-b1-expected1"📌 Setup phase
duration:
0.0004473794251680374outcome:
passed📌 Call phase
duration:
0.0001856209710240364outcome:
passed📌 Teardown phase
duration:
0.00019036605954170227outcome:
passed -
✅ Test 41
params:a={}, b={"k": 4}, expected={"k": 4}📌 Parameters
params: a: {} b: {"k": 4} expected: {"k": 4} id: "a2-b2-expected2"📌 Setup phase
duration:
0.0003001019358634949outcome:
passed📌 Call phase
duration:
0.00018306169658899307outcome:
passed📌 Teardown phase
duration:
0.00020501669496297836outcome:
passed
↳ Function: test_make_params_pos_basic
-
✅ Test 42
params:pos=["a", "b"], expected_names=["a", "b"]📌 Parameters
params: pos: ["a", "b"] expected_names: ["a", "b"] id: "pos0-expected_names0"📌 Setup phase
duration:
0.00025304965674877167outcome:
passed📌 Call phase
duration:
0.00022421404719352722outcome:
passed📌 Teardown phase
duration:
0.00017772987484931946outcome:
passed -
✅ Test 43
params:pos=["param1", "value_2", "Z"], expected_names=["param1", "value_2", "Z"]📌 Parameters
params: pos: ["param1", "value_2", "Z"] expected_names: ["param1", "value_2", "Z"] id: "pos1-expected_names1"📌 Setup phase
duration:
0.0002706330269575119outcome:
passed📌 Call phase
duration:
0.00021474529057741165outcome:
passed📌 Teardown phase
duration:
0.00017585046589374542outcome:
passed -
✅ Test 44
params:pos=[], expected_names=[]📌 Parameters
params: pos: [] expected_names: [] id: "pos2-expected_names2"📌 Setup phase
duration:
0.0002617388963699341outcome:
passed📌 Call phase
duration:
0.00017648935317993164outcome:
passed📌 Teardown phase
duration:
0.00018297042697668076outcome:
passed
↳ Function: test_make_params_kw_basic
-
✅ Test 45
params:kw={"a": 1, "b": 2}, expected_keys=["a", "b"], expected_defaults=[1, 2]📌 Parameters
params: kw: {"a": 1, "b": 2} expected_keys: ["a", "b"] expected_defaults: [1, 2] id: "kw0-expected_keys0-expected_defaults0"📌 Setup phase
duration:
0.0003142319619655609outcome:
passed📌 Call phase
duration:
0.00020044110715389252outcome:
passed📌 Teardown phase
duration:
0.00020249374210834503outcome:
passed -
✅ Test 46
params:kw={"param_x": 0}, expected_keys=["param_x"], expected_defaults=[0]📌 Parameters
params: kw: {"param_x": 0} expected_keys: ["param_x"] expected_defaults: [0] id: "kw1-expected_keys1-expected_defaults1"📌 Setup phase
duration:
0.0003097429871559143outcome:
passed📌 Call phase
duration:
0.00019521266222000122outcome:
passed📌 Teardown phase
duration:
0.00019075628370046616outcome:
passed -
✅ Test 47
params:kw={}, expected_keys=[], expected_defaults=[]📌 Parameters
params: kw: {} expected_keys: [] expected_defaults: [] id: "kw2-expected_keys2-expected_defaults2"📌 Setup phase
duration:
0.00029585789889097214outcome:
passed📌 Call phase
duration:
0.00017758551985025406outcome:
passed📌 Teardown phase
duration:
0.0001985030248761177outcome:
passed
↳ Function: test_make_signature_parametrized
-
✅ Test 48
params:pos=["x", "y"], kw={"z": 3}, expected_signature="(x, y, z=3)"📌 Parameters
params: pos: ["x", "y"] kw: {"z": 3} expected_signature: "(x, y, z=3)" id: "pos0-kw0-(x, y, z=3)"📌 Setup phase
duration:
0.0003036400303244591outcome:
passed📌 Call phase
duration:
0.00022555328905582428outcome:
passed📌 Teardown phase
duration:
0.00020295009016990662outcome:
passed -
✅ Test 49
params:pos=["a"], kw={"b": 1, "c": 2}, expected_signature="(a, b=1, c=2)"📌 Parameters
params: pos: ["a"] kw: {"b": 1, "c": 2} expected_signature: "(a, b=1, c=2)" id: "pos1-kw1-(a, b=1, c=2)"📌 Setup phase
duration:
0.00032070744782686234outcome:
passed📌 Call phase
duration:
0.00022339262068271637outcome:
passed📌 Teardown phase
duration:
0.0001947246491909027outcome:
passed -
✅ Test 50
params:pos=[], kw={"flag": false}, expected_signature="(flag=False)"📌 Parameters
params: pos: [] kw: {"flag": false} expected_signature: "(flag=False)" id: "pos2-kw2-(flag=False)"📌 Setup phase
duration:
0.0003125639632344246outcome:
passed📌 Call phase
duration:
0.00020213425159454346outcome:
passed📌 Teardown phase
duration:
0.00021150708198547363outcome:
passed
↳ Function: test_get_args_parametrized
-
✅ Test 51
params:func="<function <lambda> at 0x7fb00a10a430>", expected_pos=["a", "b"], expected_kw={"c": 3, "d": 4}📌 Parameters
params: func: "<function <lambda> at 0x7fb00a10a430>" expected_pos: ["a", "b"] expected_kw: {"c": 3, "d": 4} id: "<lambda>-expected_pos0-expected_kw0"📌 Setup phase
duration:
0.00031264498829841614outcome:
passed📌 Call phase
duration:
0.0002524424344301224outcome:
passed📌 Teardown phase
duration:
0.00019183102995157242outcome:
passed -
✅ Test 52
params:func="<function <lambda> at 0x7fb00a1173a0>", expected_pos=[], expected_kw="{'x': 1, 'y': <class 'inspect._empty'>, 'z': 0}"📌 Parameters
params: func: "<function <lambda> at 0x7fb00a1173a0>" expected_pos: [] expected_kw: "{'x': 1, 'y': <class 'inspect._empty'>, 'z': 0}" id: "<lambda>-expected_pos1-expected_kw1"📌 Setup phase
duration:
0.0003195684403181076outcome:
passed📌 Call phase
duration:
0.000240374356508255outcome:
passed📌 Teardown phase
duration:
0.0002097487449645996outcome:
passed -
✅ Test 53
params:func="<function <lambda> at 0x7fb00a1174c0>", expected_pos=[], expected_kw={}📌 Parameters
params: func: "<function <lambda> at 0x7fb00a1174c0>" expected_pos: [] expected_kw: {} id: "<lambda>-expected_pos2-expected_kw2"📌 Setup phase
duration:
0.0003111399710178375outcome:
passed📌 Call phase
duration:
0.00020956248044967651outcome:
passed📌 Teardown phase
duration:
0.00019007455557584763outcome:
passed
↳ Function: test_signature_visible
-
✅ Test 54
params:func="<function wrap_all at 0x7fb00a117700>", expected_sig="(a, b, d=30, c=10)"📌 Parameters
params: func: "<function wrap_all at 0x7fb00a117700>" expected_sig: "(a, b, d=30, c=10)" id: "wrap_all-(a, b, d=30, c=10)"📌 Setup phase
duration:
0.00025437958538532257outcome:
passed📌 Call phase
duration:
0.00020384322851896286outcome:
passed📌 Teardown phase
duration:
0.00018065981566905975outcome:
passed -
✅ Test 55
params:func="<function wrap_skip at 0x7fb00a117790>", expected_sig="(a, b, c=10, d=20)"📌 Parameters
params: func: "<function wrap_skip at 0x7fb00a117790>" expected_sig: "(a, b, c=10, d=20)" id: "wrap_skip-(a, b, c=10, d=20)"📌 Setup phase
duration:
0.00026974547654390335outcome:
passed📌 Call phase
duration:
0.00019026454538106918outcome:
passed📌 Teardown phase
duration:
0.00017736945301294327outcome:
passed -
✅ Test 56
params:func="<function wrap_ignore_all at 0x7fb00a117820>", expected_sig="(x, y, c=10, d=20)"📌 Parameters
params: func: "<function wrap_ignore_all at 0x7fb00a117820>" expected_sig: "(x, y, c=10, d=20)" id: "wrap_ignore_all-(x, y, c=10, d=20)"📌 Setup phase
duration:
0.00026333611458539963outcome:
passed📌 Call phase
duration:
0.00018598977476358414outcome:
passed📌 Teardown phase
duration:
0.00018390920013189316outcome:
passed
↳ Function: test_wrapper_behavior
-
✅ Test 57
params:func="<function wrap_all at 0x7fb00a117700>", args=[1, 2, 3], kwargs={}, expected_result=36📌 Parameters
params: func: "<function wrap_all at 0x7fb00a117700>" args: [1, 2, 3] kwargs: {} expected_result: 36 id: "wrap_all-args0-kwargs0-36"📌 Setup phase
duration:
0.0003548990935087204outcome:
passed📌 Call phase
duration:
0.00018897000700235367outcome:
passed📌 Teardown phase
duration:
0.0002031112089753151outcome:
passed -
✅ Test 58
params:func="<function wrap_all at 0x7fb00a117700>", args=[1, 2, 3], kwargs={"d": 5}, expected_result=11📌 Parameters
params: func: "<function wrap_all at 0x7fb00a117700>" args: [1, 2, 3] kwargs: {"d": 5} expected_result: 11 id: "wrap_all-args1-kwargs1-11"📌 Setup phase
duration:
0.00035651493817567825outcome:
passed📌 Call phase
duration:
0.00017192494124174118outcome:
passed📌 Teardown phase
duration:
0.00020205136388540268outcome:
passed -
✅ Test 59
params:func="<function wrap_skip at 0x7fb00a117790>", args=[0, 0], kwargs={"c": 3, "d": 4}, expected_result=10📌 Parameters
params: func: "<function wrap_skip at 0x7fb00a117790>" args: [0, 0] kwargs: {"c": 3, "d": 4} expected_result: 10 id: "wrap_skip-args2-kwargs2-10"📌 Setup phase
duration:
0.00035145971924066544outcome:
passed📌 Call phase
duration:
0.0001727743074297905outcome:
passed📌 Teardown phase
duration:
0.00020866841077804565outcome:
passed -
✅ Test 60
params:func="<function wrap_ignore_all at 0x7fb00a117820>", args=[0, 0], kwargs={}, expected_result=10📌 Parameters
params: func: "<function wrap_ignore_all at 0x7fb00a117820>" args: [0, 0] kwargs: {} expected_result: 10 id: "wrap_ignore_all-args3-kwargs3-10"📌 Setup phase
duration:
0.00034572742879390717outcome:
passed📌 Call phase
duration:
0.00017171446233987808outcome:
passed📌 Teardown phase
duration:
0.00020451005548238754outcome:
passed
-
-
📄 test_utils_ask_yes_no.py
↳ Function: test_ask_yes_no
-
✅ Test 61
params:default=null, user_input="y", expected_output=true, expected_prompt="Question? [y/n] "📌 Parameters
params: default: null user_input: "y" expected_output: true expected_prompt: "Question? [y/n] " id: "None-y-True-Question? [y/n] "📌 Setup phase
duration:
0.00039693526923656464outcome:
passed📌 Call phase
duration:
0.0009361216798424721outcome:
passed📌 Teardown phase
duration:
0.00024295970797538757outcome:
passed -
✅ Test 62
params:default=null, user_input="yes", expected_output=true, expected_prompt="Question? [y/n] "📌 Parameters
params: default: null user_input: "yes" expected_output: true expected_prompt: "Question? [y/n] " id: "None-yes-True-Question? [y/n] "📌 Setup phase
duration:
0.00036390870809555054outcome:
passed📌 Call phase
duration:
0.0006255442276597023outcome:
passed📌 Teardown phase
duration:
0.00023882649838924408outcome:
passed -
✅ Test 63
params:default=null, user_input="n", expected_output=false, expected_prompt="Question? [y/n] "📌 Parameters
params: default: null user_input: "n" expected_output: false expected_prompt: "Question? [y/n] " id: "None-n-False-Question? [y/n] "📌 Setup phase
duration:
0.0003616996109485626outcome:
passed📌 Call phase
duration:
0.0005681561306118965outcome:
passed📌 Teardown phase
duration:
0.0002239421010017395outcome:
passed -
✅ Test 64
params:default=null, user_input="no", expected_output=false, expected_prompt="Question? [y/n] "📌 Parameters
params: default: null user_input: "no" expected_output: false expected_prompt: "Question? [y/n] " id: "None-no-False-Question? [y/n] "📌 Setup phase
duration:
0.0003663059324026108outcome:
passed📌 Call phase
duration:
0.0006508044898509979outcome:
passed📌 Teardown phase
duration:
0.0002192249521613121outcome:
passed -
✅ Test 65
params:default=null, user_input=["maybe", "y"], expected_output=true, expected_prompt="Question? [y/n] "📌 Parameters
params: default: null user_input: ["maybe", "y"] expected_output: true expected_prompt: "Question? [y/n] " id: "None-user_input4-True-Question? [y/n] "📌 Setup phase
duration:
0.0003756750375032425outcome:
passed📌 Call phase
duration:
0.0005742572247982025outcome:
passed📌 Teardown phase
duration:
0.0002167103812098503outcome:
passed -
✅ Test 66
params:default=null, user_input=["", "no"], expected_output=false, expected_prompt="Question? [y/n] "📌 Parameters
params: default: null user_input: ["", "no"] expected_output: false expected_prompt: "Question? [y/n] " id: "None-user_input5-False-Question? [y/n] "📌 Setup phase
duration:
0.00037727225571870804outcome:
passed📌 Call phase
duration:
0.0005766814574599266outcome:
passed📌 Teardown phase
duration:
0.00022345874458551407outcome:
passed -
✅ Test 67
params:default=null, user_input=["invalid", "", "invalid", "yes"], expected_output=true, expected_prompt="Question? [y/n] "📌 Parameters
params: default: null user_input: ["invalid", "", "invalid", "yes"] expected_output: true expected_prompt: "Question? [y/n] " id: "None-user_input6-True-Question? [y/n] "📌 Setup phase
duration:
0.0003676312044262886outcome:
passed📌 Call phase
duration:
0.0007173642516136169outcome:
passed📌 Teardown phase
duration:
0.00022203754633665085outcome:
passed -
✅ Test 68
params:default="y", user_input="y", expected_output=true, expected_prompt="Question? [Y/n] "📌 Parameters
params: default: "y" user_input: "y" expected_output: true expected_prompt: "Question? [Y/n] " id: "y-y-True-Question? [Y/n] "📌 Setup phase
duration:
0.0003794049844145775outcome:
passed📌 Call phase
duration:
0.0006784778088331223outcome:
passed📌 Teardown phase
duration:
0.0002486035227775574outcome:
passed -
✅ Test 69
params:default="y", user_input="n", expected_output=false, expected_prompt="Question? [Y/n] "📌 Parameters
params: default: "y" user_input: "n" expected_output: false expected_prompt: "Question? [Y/n] " id: "y-n-False-Question? [Y/n] "📌 Setup phase
duration:
0.0003743832930922508outcome:
passed📌 Call phase
duration:
0.0005396325141191483outcome:
passed📌 Teardown phase
duration:
0.00022776611149311066outcome:
passed -
✅ Test 70
params:default="y", user_input="", expected_output=true, expected_prompt="Question? [Y/n] "📌 Parameters
params: default: "y" user_input: "" expected_output: true expected_prompt: "Question? [Y/n] " id: "y--True-Question? [Y/n] "📌 Setup phase
duration:
0.0003751413896679878outcome:
passed📌 Call phase
duration:
0.0005584545433521271outcome:
passed📌 Teardown phase
duration:
0.00023310445249080658outcome:
passed -
✅ Test 71
params:default="n", user_input="y", expected_output=true, expected_prompt="Question? [y/N] "📌 Parameters
params: default: "n" user_input: "y" expected_output: true expected_prompt: "Question? [y/N] " id: "n-y-True-Question? [y/N] "📌 Setup phase
duration:
0.0003581177443265915outcome:
passed📌 Call phase
duration:
0.0005577653646469116outcome:
passed📌 Teardown phase
duration:
0.00023280922323465347outcome:
passed -
✅ Test 72
params:default="n", user_input="n", expected_output=false, expected_prompt="Question? [y/N] "📌 Parameters
params: default: "n" user_input: "n" expected_output: false expected_prompt: "Question? [y/N] " id: "n-n-False-Question? [y/N] "📌 Setup phase
duration:
0.0003605205565690994outcome:
passed📌 Call phase
duration:
0.0006495602428913116outcome:
passed📌 Teardown phase
duration:
0.00021216459572315216outcome:
passed -
✅ Test 73
params:default="n", user_input="", expected_output=false, expected_prompt="Question? [y/N] "📌 Parameters
params: default: "n" user_input: "" expected_output: false expected_prompt: "Question? [y/N] " id: "n--False-Question? [y/N] "📌 Setup phase
duration:
0.0003633033484220505outcome:
passed📌 Call phase
duration:
0.0005466211587190628outcome:
passed📌 Teardown phase
duration:
0.0002142610028386116outcome:
passed
↳ Function: test_ask_yes_no_ctrl_c
-
✅ Test 74
params:default=null, user_input="<class 'KeyboardInterrupt'>", expected_output=false, ctrl_c="n"📌 Parameters
params: default: null user_input: "<class 'KeyboardInterrupt'>" expected_output: false ctrl_c: "n" id: "None-KeyboardInterrupt-False-n"📌 Setup phase
duration:
0.00035250280052423477outcome:
passed📌 Call phase
duration:
0.0012380080297589302outcome:
passedstdout:
📌 Teardown phase
duration:
0.0002281172201037407outcome:
passed -
✅ Test 75
params:default=null, user_input="<class 'KeyboardInterrupt'>", expected_output=true, ctrl_c="y"📌 Parameters
params: default: null user_input: "<class 'KeyboardInterrupt'>" expected_output: true ctrl_c: "y" id: "None-KeyboardInterrupt-True-y"📌 Setup phase
duration:
0.0003657964989542961outcome:
passed📌 Call phase
duration:
0.0011271936818957329outcome:
passedstdout:
📌 Teardown phase
duration:
0.0002353135496377945outcome:
passed -
✅ Test 76
params:default="y", user_input="<class 'KeyboardInterrupt'>", expected_output=false, ctrl_c="n"📌 Parameters
params: default: "y" user_input: "<class 'KeyboardInterrupt'>" expected_output: false ctrl_c: "n" id: "y-KeyboardInterrupt-False-n"📌 Setup phase
duration:
0.00036005303263664246outcome:
passed📌 Call phase
duration:
0.0009590154513716698outcome:
passedstdout:
📌 Teardown phase
duration:
0.00025465525686740875outcome:
passed -
✅ Test 77
params:default="y", user_input="<class 'KeyboardInterrupt'>", expected_output=true, ctrl_c="y"📌 Parameters
params: default: "y" user_input: "<class 'KeyboardInterrupt'>" expected_output: true ctrl_c: "y" id: "y-KeyboardInterrupt-True-y"📌 Setup phase
duration:
0.0003665909171104431outcome:
passed📌 Call phase
duration:
0.0009615784510970116outcome:
passedstdout:
📌 Teardown phase
duration:
0.00023092050105333328outcome:
passed -
✅ Test 78
params:default="n", user_input="<class 'KeyboardInterrupt'>", expected_output=false, ctrl_c="n"📌 Parameters
params: default: "n" user_input: "<class 'KeyboardInterrupt'>" expected_output: false ctrl_c: "n" id: "n-KeyboardInterrupt-False-n"📌 Setup phase
duration:
0.00038322247564792633outcome:
passed📌 Call phase
duration:
0.0009942995384335518outcome:
passedstdout:
📌 Teardown phase
duration:
0.00022624898701906204outcome:
passed -
✅ Test 79
params:default=null, user_input="['invalid', '', 'invalid', <class 'KeyboardInterrupt'>]", expected_output=false, ctrl_c="n"📌 Parameters
params: default: null user_input: "['invalid', '', 'invalid', <class 'KeyboardInterrupt'>]" expected_output: false ctrl_c: "n" id: "None-user_input5-False-n"📌 Setup phase
duration:
0.0003705546259880066outcome:
passed📌 Call phase
duration:
0.0010886937379837036outcome:
passedstdout:
📌 Teardown phase
duration:
0.0002514887601137161outcome:
passed -
✅ Test 80
params:default=null, user_input="['invalid', '', 'invalid', <class 'KeyboardInterrupt'>]", expected_output=true, ctrl_c="y"📌 Parameters
params: default: null user_input: "['invalid', '', 'invalid', <class 'KeyboardInterrupt'>]" expected_output: true ctrl_c: "y" id: "None-user_input6-True-y"📌 Setup phase
duration:
0.00036073755472898483outcome:
passed📌 Call phase
duration:
0.0012855762615799904outcome:
passedstdout:
📌 Teardown phase
duration:
0.00023178011178970337outcome:
passed -
✅ Test 81
params:default=null, user_input="['foo', '', <class 'KeyboardInterrupt'>, '', 'invalid', <class 'KeyboardInterrupt'>, 'no']", expected_output=false, ctrl_c=null📌 Parameters
params: default: null user_input: "['foo', '', <class 'KeyboardInterrupt'>, '', 'invalid', <class 'KeyboardInterrupt'>, 'no']" expected_output: false ctrl_c: null id: "None-user_input7-False-None"📌 Setup phase
duration:
0.00036807917058467865outcome:
passed📌 Call phase
duration:
0.0013908138498663902outcome:
passedstdout:
📌 Teardown phase
duration:
0.0002390136942267418outcome:
passed -
✅ Test 82
params:default="n", user_input="[<class 'KeyboardInterrupt'>, <class 'KeyboardInterrupt'>, <class 'KeyboardInterrupt'>, '']", expected_output=false, ctrl_c=null📌 Parameters
params: default: "n" user_input: "[<class 'KeyboardInterrupt'>, <class 'KeyboardInterrupt'>, <class 'KeyboardInterrupt'>, '']" expected_output: false ctrl_c: null id: "n-user_input8-False-None"📌 Setup phase
duration:
0.00037497375160455704outcome:
passed📌 Call phase
duration:
0.00105388555675745outcome:
passedstdout:
📌 Teardown phase
duration:
0.00023367535322904587outcome:
passed -
✅ Test 83
params:default="n", user_input="[<class 'KeyboardInterrupt'>, <class 'KeyboardInterrupt'>, <class 'KeyboardInterrupt'>, '']", expected_output=false, ctrl_c="Invalid"📌 Parameters
params: default: "n" user_input: "[<class 'KeyboardInterrupt'>, <class 'KeyboardInterrupt'>, <class 'KeyboardInterrupt'>, '']" expected_output: false ctrl_c: "Invalid" id: "n-user_input9-False-Invalid"📌 Setup phase
duration:
0.0003587203100323677outcome:
passed📌 Call phase
duration:
0.0011848900467157364outcome:
passedstdout:
📌 Teardown phase
duration:
0.0002283938229084015outcome:
passed
↳ Function: test_ask_yes_no_ctrl_d
-
✅ Test 84
params:default=null, user_input="<class 'EOFError'>", expected_output=false, ctrl_d="n"📌 Parameters
params: default: null user_input: "<class 'EOFError'>" expected_output: false ctrl_d: "n" id: "None-EOFError-False-n"📌 Setup phase
duration:
0.00037653185427188873outcome:
passed📌 Call phase
duration:
0.0013316823169589043outcome:
passedstdout:
📌 Teardown phase
duration:
0.00024387240409851074outcome:
passed -
✅ Test 85
params:default=null, user_input="<class 'EOFError'>", expected_output=true, ctrl_d="y"📌 Parameters
params: default: null user_input: "<class 'EOFError'>" expected_output: true ctrl_d: "y" id: "None-EOFError-True-y"📌 Setup phase
duration:
0.00036298297345638275outcome:
passed📌 Call phase
duration:
0.0009486433118581772outcome:
passedstdout:
📌 Teardown phase
duration:
0.0002302778884768486outcome:
passed -
✅ Test 86
params:default="y", user_input="<class 'EOFError'>", expected_output=true, ctrl_d="y"📌 Parameters
params: default: "y" user_input: "<class 'EOFError'>" expected_output: true ctrl_d: "y" id: "y-EOFError-True-y"📌 Setup phase
duration:
0.00037152599543333054outcome:
passed📌 Call phase
duration:
0.001429612748324871outcome:
passedstdout:
📌 Teardown phase
duration:
0.00025358982384204865outcome:
passed -
✅ Test 87
params:default="n", user_input="<class 'EOFError'>", expected_output=true, ctrl_d="y"📌 Parameters
params: default: "n" user_input: "<class 'EOFError'>" expected_output: true ctrl_d: "y" id: "n-EOFError-True-y"📌 Setup phase
duration:
0.00035842880606651306outcome:
passed📌 Call phase
duration:
0.0009464249014854431outcome:
passedstdout:
📌 Teardown phase
duration:
0.00022997520864009857outcome:
passed -
✅ Test 88
params:default="n", user_input="<class 'EOFError'>", expected_output=false, ctrl_d="n"📌 Parameters
params: default: "n" user_input: "<class 'EOFError'>" expected_output: false ctrl_d: "n" id: "n-EOFError-False-n"📌 Setup phase
duration:
0.0003940435126423836outcome:
passed📌 Call phase
duration:
0.0013583414256572723outcome:
passedstdout:
📌 Teardown phase
duration:
0.0002573765814304352outcome:
passed -
✅ Test 89
params:default=null, user_input="['foo', <class 'EOFError'>]", expected_output=true, ctrl_d="y"📌 Parameters
params: default: null user_input: "['foo', <class 'EOFError'>]" expected_output: true ctrl_d: "y" id: "None-user_input5-True-y"📌 Setup phase
duration:
0.0003583598881959915outcome:
passed📌 Call phase
duration:
0.0009850412607192993outcome:
passedstdout:
📌 Teardown phase
duration:
0.0002369750291109085outcome:
passed -
✅ Test 90
params:default=null, user_input="['foo', <class 'EOFError'>]", expected_output=false, ctrl_d="n"📌 Parameters
params: default: null user_input: "['foo', <class 'EOFError'>]" expected_output: false ctrl_d: "n" id: "None-user_input6-False-n"📌 Setup phase
duration:
0.00037151481956243515outcome:
passed📌 Call phase
duration:
0.0016692513599991798outcome:
passedstdout:
📌 Teardown phase
duration:
0.00022579822689294815outcome:
passed -
✅ Test 91
params:default="y", user_input="<class 'EOFError'>", expected_output=true, ctrl_d=null📌 Parameters
params: default: "y" user_input: "<class 'EOFError'>" expected_output: true ctrl_d: null id: "y-EOFError-True-None"📌 Setup phase
duration:
0.0003773532807826996outcome:
passed📌 Call phase
duration:
0.000897485762834549outcome:
passedstdout:
📌 Teardown phase
duration:
0.00021992437541484833outcome:
passed -
✅ Test 92
params:default="n", user_input="<class 'EOFError'>", expected_output=false, ctrl_d=null📌 Parameters
params: default: "n" user_input: "<class 'EOFError'>" expected_output: false ctrl_d: null id: "n-EOFError-False-None"📌 Setup phase
duration:
0.00036820676177740097outcome:
passed📌 Call phase
duration:
0.001355486921966076outcome:
passedstdout:
📌 Teardown phase
duration:
0.00022662337869405746outcome:
passed -
✅ Test 93
params:default=null, user_input="['invalid', 'ok', '', <class 'EOFError'>, 'ok', 'y']", expected_output=true, ctrl_d=null📌 Parameters
params: default: null user_input: "['invalid', 'ok', '', <class 'EOFError'>, 'ok', 'y']" expected_output: true ctrl_d: null id: "None-user_input9-True-None"📌 Setup phase
duration:
0.0003678658977150917outcome:
passed📌 Call phase
duration:
0.0016198400408029556outcome:
passedstdout:
📌 Teardown phase
duration:
0.00023346487432718277outcome:
passed -
✅ Test 94
params:default="n", user_input="['no', <class 'EOFError'>]", expected_output=false, ctrl_d=null📌 Parameters
params: default: "n" user_input: "['no', <class 'EOFError'>]" expected_output: false ctrl_d: null id: "n-user_input10-False-None"📌 Setup phase
duration:
0.0003713257610797882outcome:
passed📌 Call phase
duration:
0.000548320822417736outcome:
passed📌 Teardown phase
duration:
0.00024336576461791992outcome:
passed -
✅ Test 95
params:default=null, user_input="[<class 'EOFError'>, <class 'EOFError'>, <class 'EOFError'>, 'y']", expected_output=true, ctrl_d=null📌 Parameters
params: default: null user_input: "[<class 'EOFError'>, <class 'EOFError'>, <class 'EOFError'>, 'y']" expected_output: true ctrl_d: null id: "None-user_input11-True-None"📌 Setup phase
duration:
0.00035920552909374237outcome:
passed📌 Call phase
duration:
0.0011840714141726494outcome:
passedstdout:
📌 Teardown phase
duration:
0.00023028068244457245outcome:
passed -
✅ Test 96
params:default=null, user_input="['invalid', '', 'nope', <class 'EOFError'>]", expected_output=false, ctrl_d="n"📌 Parameters
params: default: null user_input: "['invalid', '', 'nope', <class 'EOFError'>]" expected_output: false ctrl_d: "n" id: "None-user_input12-False-n"📌 Setup phase
duration:
0.00037913862615823746outcome:
passed📌 Call phase
duration:
0.0009498326107859612outcome:
passedstdout:
📌 Teardown phase
duration:
0.00025436561554670334outcome:
passed -
✅ Test 97
params:default=null, user_input="['nope', 'nope', <class 'EOFError'>]", expected_output=true, ctrl_d="y"📌 Parameters
params: default: null user_input: "['nope', 'nope', <class 'EOFError'>]" expected_output: true ctrl_d: "y" id: "None-user_input13-True-y"📌 Setup phase
duration:
0.00036115851253271103outcome:
passed📌 Call phase
duration:
0.0010429061949253082outcome:
passedstdout:
📌 Teardown phase
duration:
0.00023638922721147537outcome:
passed
↳ Function: test_ask_yes_no_mixed_sequences
-
✅ Test 98
params:default=null, ctrl_c="invalid", ctrl_d=null, user_input="['what', '', 'nope', <class 'KeyboardInterrupt'>, 'ok', <class 'EOFError'>, 'no']", expected_output=false📌 Parameters
params: default: null ctrl_c: "invalid" ctrl_d: null user_input: "['what', '', 'nope', <class 'KeyboardInterrupt'>, 'ok', <class 'EOFError'>, 'no']" expected_output: false id: "None-invalid-None-user_input0-False"📌 Setup phase
duration:
0.0004177205264568329outcome:
passed📌 Call phase
duration:
0.0009257569909095764outcome:
passedstdout:
📌 Teardown phase
duration:
0.00023757293820381165outcome:
passed -
✅ Test 99
params:default=null, ctrl_c=null, ctrl_d="notananswer", user_input="['maybe', <class 'KeyboardInterrupt'>, 'nop', 'yep', <class 'EOFError'>, 'yes']", expected_output=true📌 Parameters
params: default: null ctrl_c: null ctrl_d: "notananswer" user_input: "['maybe', <class 'KeyboardInterrupt'>, 'nop', 'yep', <class 'EOFError'>, 'yes']" expected_output: true id: "None-None-notananswer-user_input1-True"📌 Setup phase
duration:
0.0004127761349081993outcome:
passed📌 Call phase
duration:
0.0009604934602975845outcome:
passedstdout:
📌 Teardown phase
duration:
0.0002677757292985916outcome:
passed -
✅ Test 100
params:default=null, ctrl_c="n", ctrl_d="nop", user_input="['ok', <class 'EOFError'>, <class 'EOFError'>, 'maybe', <class 'EOFError'>, 'nah', <class 'KeyboardInterrupt'>]", expected_output=false📌 Parameters
params: default: null ctrl_c: "n" ctrl_d: "nop" user_input: "['ok', <class 'EOFError'>, <class 'EOFError'>, 'maybe', <class 'EOFError'>, 'nah', <class 'KeyboardInterrupt'>]" expected_output: false id: "None-n-nop-user_input2-False"📌 Setup phase
duration:
0.00039669498801231384outcome:
passed📌 Call phase
duration:
0.0010903263464570045outcome:
passedstdout:
📌 Teardown phase
duration:
0.00024009402841329575outcome:
passed
-
-
📄 test_utils_channels.py
↳ Function: test_load_channels_and_channels_class_with_professional_names
-
✅ Test 101
📌 Setup phase
duration:
0.0001698024570941925outcome:
passed📌 Call phase
duration:
0.0007967595010995865outcome:
passed📌 Teardown phase
duration:
0.00015544705092906952outcome:
passed
-
-
📄 test_utils_config.py
↳ Function: test_config_with_nested_and_list_data
-
✅ Test 102
📌 Setup phase
duration:
0.00017931126058101654outcome:
passed📌 Call phase
duration:
0.0005754828453063965outcome:
passed📌 Teardown phase
duration:
0.00015522073954343796outcome:
passed
↳ Function: test_config_with_strange_and_edge_keys
-
✅ Test 103
📌 Setup phase
duration:
0.00014751311391592026outcome:
passed📌 Call phase
duration:
0.000785529613494873outcome:
passed📌 Teardown phase
duration:
0.00016725994646549225outcome:
passed
-
-
📄 test_utils_cpint.py
↳ Function: test_load_color_variants_all_keys_and_types
-
✅ Test 104
params:base_color="red"📌 Parameters
params: base_color: "red" id: "red"📌 Setup phase
duration:
0.0002383403480052948outcome:
passed📌 Call phase
duration:
0.0002556620165705681outcome:
passed📌 Teardown phase
duration:
0.0001795012503862381outcome:
passed -
✅ Test 105
params:base_color="blue"📌 Parameters
params: base_color: "blue" id: "blue"📌 Setup phase
duration:
0.00022132974117994308outcome:
passed📌 Call phase
duration:
0.00019249320030212402outcome:
passed📌 Teardown phase
duration:
0.00016174837946891785outcome:
passed -
✅ Test 106
params:base_color="yellow"📌 Parameters
params: base_color: "yellow" id: "yellow"📌 Setup phase
duration:
0.000238700769841671outcome:
passed📌 Call phase
duration:
0.0001884913071990013outcome:
passed📌 Teardown phase
duration:
0.000155741348862648outcome:
passed -
✅ Test 107
params:base_color="green"📌 Parameters
params: base_color: "green" id: "green"📌 Setup phase
duration:
0.0002087494358420372outcome:
passed📌 Call phase
duration:
0.00018270406872034073outcome:
passed📌 Teardown phase
duration:
0.00018766429275274277outcome:
passed -
✅ Test 108
params:base_color="cyan"📌 Parameters
params: base_color: "cyan" id: "cyan"📌 Setup phase
duration:
0.00021226145327091217outcome:
passed📌 Call phase
duration:
0.0001842491328716278outcome:
passed📌 Teardown phase
duration:
0.00015568826347589493outcome:
passed -
✅ Test 109
params:base_color="magenta"📌 Parameters
params: base_color: "magenta" id: "magenta"📌 Setup phase
duration:
0.00021302234381437302outcome:
passed📌 Call phase
duration:
0.00021399091929197311outcome:
passed📌 Teardown phase
duration:
0.00016057956963777542outcome:
passed -
✅ Test 110
params:base_color="white"📌 Parameters
params: base_color: "white" id: "white"📌 Setup phase
duration:
0.0002134237438440323outcome:
passed📌 Call phase
duration:
0.00018834136426448822outcome:
passed📌 Teardown phase
duration:
0.00015213992446660995outcome:
passed -
✅ Test 111
params:base_color="black"📌 Parameters
params: base_color: "black" id: "black"📌 Setup phase
duration:
0.00022306200116872787outcome:
passed📌 Call phase
duration:
0.000186186283826828outcome:
passed📌 Teardown phase
duration:
0.0001605115830898285outcome:
passed
↳ Function: test_cprint_all_cases_fancy
-
✅ Test 112
params:objects=[["Fancy", "list"], {"a": 7}, null], color_spec=["red", "+"], sep=" | ", expected_flatten="['Fancy', 'list'] | {'a': 7} | None", expected_error=null📌 Parameters
params: objects: [["Fancy", "list"], {"a": 7}, null] color_spec: ["red", "+"] sep: " | " expected_flatten: "['Fancy', 'list'] | {'a': 7} | None" expected_error: null id: "objects0-color_spec0- | -['Fancy', 'list'] | {'a': 7} | None-None"📌 Setup phase
duration:
0.000632978044450283outcome:
passed📌 Call phase
duration:
0.00029128696769475937outcome:
passed📌 Teardown phase
duration:
0.00029578059911727905outcome:
passed -
✅ Test 113
params:objects=[{"k": [1, 2]}, 99, ["X", ["Y"]]], color_spec=["blue", "++"], sep=" - ", expected_flatten="{'k': [1, 2]} - 99 - ['X', ['Y']]", expected_error=null📌 Parameters
params: objects: [{"k": [1, 2]}, 99, ["X", ["Y"]]] color_spec: ["blue", "++"] sep: " - " expected_flatten: "{'k': [1, 2]} - 99 - ['X', ['Y']]" expected_error: null id: "objects1-color_spec1- - -{'k': [1, 2]} - 99 - ['X', ['Y']]-None"📌 Setup phase
duration:
0.0005332399159669876outcome:
passed📌 Call phase
duration:
0.00026497431099414825outcome:
passed📌 Teardown phase
duration:
0.0002905372530221939outcome:
passed -
✅ Test 114
params:objects=[[], {}, "End"], color_spec=["magenta", "--"], sep=" / ", expected_flatten="[] / {} / End", expected_error=null📌 Parameters
params: objects: [[], {}, "End"] color_spec: ["magenta", "--"] sep: " / " expected_flatten: "[] / {} / End" expected_error: null id: "objects2-color_spec2- / -[] / {} / End-None"📌 Setup phase
duration:
0.0005161995068192482outcome:
passed📌 Call phase
duration:
0.0002571679651737213outcome:
passed📌 Teardown phase
duration:
0.00029440876096487045outcome:
passed -
✅ Test 115
params:objects=[["", [3, 4]], "done", 0], color_spec=["green", ""], sep=";", expected_flatten="['', [3, 4]];done;0", expected_error=null📌 Parameters
params: objects: [["", [3, 4]], "done", 0] color_spec: ["green", ""] sep: ";" expected_flatten: "['', [3, 4]];done;0" expected_error: null id: "objects3-color_spec3-;-['', [3, 4]];done;0-None"📌 Setup phase
duration:
0.0004998622462153435outcome:
passed📌 Call phase
duration:
0.00026247836649417877outcome:
passed📌 Teardown phase
duration:
0.0002784421667456627outcome:
passed -
✅ Test 116
params:objects=[["alpha", null], ["beta", {}], "stop"], color_spec=["yellow", ""], sep="::", expected_flatten="['alpha', None]::['beta', {}]::stop", expected_error=null📌 Parameters
params: objects: [["alpha", null], ["beta", {}], "stop"] color_spec: ["yellow", ""] sep: "::" expected_flatten: "['alpha', None]::['beta', {}]::stop" expected_error: null id: "objects4-color_spec4-::-['alpha', None]::['beta', {}]::stop-None"📌 Setup phase
duration:
0.0004996806383132935outcome:
passed📌 Call phase
duration:
0.00029517244547605515outcome:
passed📌 Teardown phase
duration:
0.0002852426841855049outcome:
passed -
✅ Test 117
params:objects=[["deep", ["deeper", ["deepest"]]], "X"], color_spec=["cyan", "+"], sep=" ... ", expected_flatten="['deep', ['deeper', ['deepest']]] ... X", expected_error=null📌 Parameters
params: objects: [["deep", ["deeper", ["deepest"]]], "X"] color_spec: ["cyan", "+"] sep: " ... " expected_flatten: "['deep', ['deeper', ['deepest']]] ... X" expected_error: null id: "objects5-color_spec5- ... -['deep', ['deeper', ['deepest']]] ... X-None"📌 Setup phase
duration:
0.0005062837153673172outcome:
passed📌 Call phase
duration:
0.0002586226910352707outcome:
passed📌 Teardown phase
duration:
0.00027794111520051956outcome:
passed -
✅ Test 118
params:objects=[{"dict": {"nested": [4, 5]}}, [true, false], 6.28], color_spec=["white", "++"], sep=" // ", expected_flatten="{'dict': {'nested': [4, 5]}} // [True, False] // 6.28", expected_error=null📌 Parameters
params: objects: [{"dict": {"nested": [4, 5]}}, [true, false], 6.28] color_spec: ["white", "++"] sep: " // " expected_flatten: "{'dict': {'nested': [4, 5]}} // [True, False] // 6.28" expected_error: null id: "objects6-color_spec6- // -{'dict': {'nested': [4, 5]}} // [True, False] // 6.28-None"📌 Setup phase
duration:
0.0005115224048495293outcome:
passed📌 Call phase
duration:
0.0002595130354166031outcome:
passed📌 Teardown phase
duration:
0.00028925854712724686outcome:
passed -
✅ Test 119
params:objects=[["A", ["B"]], "string", "C"], color_spec=["red", "--"], sep="==", expected_flatten="['A', ['B']]==string==C", expected_error=null📌 Parameters
params: objects: [["A", ["B"]], "string", "C"] color_spec: ["red", "--"] sep: "==" expected_flatten: "['A', ['B']]==string==C" expected_error: null id: "objects7-color_spec7-==-['A', ['B']]==string==C-None"📌 Setup phase
duration:
0.0005034329369664192outcome:
passed📌 Call phase
duration:
0.0002568839117884636outcome:
passed📌 Teardown phase
duration:
0.00028178002685308456outcome:
passed -
✅ Test 120
params:objects=[["Test", null, []], {"v": 0}], color_spec=["green", "++"], sep=" ++ ", expected_flatten="['Test', None, []] ++ {'v': 0}", expected_error=null📌 Parameters
params: objects: [["Test", null, []], {"v": 0}] color_spec: ["green", "++"] sep: " ++ " expected_flatten: "['Test', None, []] ++ {'v': 0}" expected_error: null id: "objects8-color_spec8- ++ -['Test', None, []] ++ {'v': 0}-None"📌 Setup phase
duration:
0.0004913127049803734outcome:
passed📌 Call phase
duration:
0.00027532968670129776outcome:
passed📌 Teardown phase
duration:
0.000278509221971035outcome:
passed -
✅ Test 121
params:objects=[["no", "color"], "plain"], color_spec=null, sep=";", expected_flatten="['no', 'color'];plain", expected_error=null📌 Parameters
params: objects: [["no", "color"], "plain"] color_spec: null sep: ";" expected_flatten: "['no', 'color'];plain" expected_error: null id: "objects9-None-;-['no', 'color'];plain-None"📌 Setup phase
duration:
0.000641227699816227outcome:
passed📌 Call phase
duration:
0.00025945995002985outcome:
passed📌 Teardown phase
duration:
0.00029291771352291107outcome:
passed -
✅ Test 122
params:objects=[["simple"], "", 12], color_spec=null, sep=" | ", expected_flatten="['simple'] | | 12", expected_error=null📌 Parameters
params: objects: [["simple"], "", 12] color_spec: null sep: " | " expected_flatten: "['simple'] | | 12" expected_error: null id: "objects10-None- | -['simple'] | | 12-None"📌 Setup phase
duration:
0.0005027856677770615outcome:
passed📌 Call phase
duration:
0.0002488996833562851outcome:
passed📌 Teardown phase
duration:
0.0002947133034467697outcome:
passed -
✅ Test 123
params:objects=[[["very", "deep"]], {"ok": true}], color_spec=null, sep=" : ", expected_flatten="[['very', 'deep']] : {'ok': True}", expected_error=null📌 Parameters
params: objects: [[["very", "deep"]], {"ok": true}] color_spec: null sep: " : " expected_flatten: "[['very', 'deep']] : {'ok': True}" expected_error: null id: "objects11-None- : -[['very', 'deep']] : {'ok': True}-None"📌 Setup phase
duration:
0.00047936197370290756outcome:
passed📌 Call phase
duration:
0.00027051661163568497outcome:
passed📌 Teardown phase
duration:
0.00027631502598524094outcome:
passed -
✅ Test 124
params:objects=[["fail", "color"], 123], color_spec=["green", "!!"], sep="|", expected_flatten="['fail', 'color']|123", expected_error="<class 'ValueError'>"📌 Parameters
params: objects: [["fail", "color"], 123] color_spec: ["green", "!!"] sep: "|" expected_flatten: "['fail', 'color']|123" expected_error: "<class 'ValueError'>" id: "objects12-color_spec12-|-['fail', 'color']|123-ValueError"📌 Setup phase
duration:
0.0004875399172306061outcome:
passed📌 Call phase
duration:
0.000299990177154541outcome:
passed📌 Teardown phase
duration:
0.0002921437844634056outcome:
passed -
✅ Test 125
params:objects=[["error"], {}], color_spec=["cyan", "xxx"], sep=" * ", expected_flatten="['error'] * {}", expected_error="<class 'ValueError'>"📌 Parameters
params: objects: [["error"], {}] color_spec: ["cyan", "xxx"] sep: " * " expected_flatten: "['error'] * {}" expected_error: "<class 'ValueError'>" id: "objects13-color_spec13- * -['error'] * {}-ValueError"📌 Setup phase
duration:
0.000515500083565712outcome:
passed📌 Call phase
duration:
0.0002683103084564209outcome:
passed📌 Teardown phase
duration:
0.0002840198576450348outcome:
passed -
✅ Test 126
params:objects=[["nope"], ["bad"]], color_spec=["magenta", "invalid"], sep="//", expected_flatten="['nope']//['bad']", expected_error="<class 'ValueError'>"📌 Parameters
params: objects: [["nope"], ["bad"]] color_spec: ["magenta", "invalid"] sep: "//" expected_flatten: "['nope']//['bad']" expected_error: "<class 'ValueError'>" id: "objects14-color_spec14-//-['nope']//['bad']-ValueError"📌 Setup phase
duration:
0.0005079042166471481outcome:
passed📌 Call phase
duration:
0.0002741897478699684outcome:
passed📌 Teardown phase
duration:
0.00028726737946271896outcome:
passed -
✅ Test 127
params:objects=["wrong", "base"], color_spec=["notacolor", ""], sep="--", expected_flatten="wrong--base", expected_error="<class 'ValueError'>"📌 Parameters
params: objects: ["wrong", "base"] color_spec: ["notacolor", ""] sep: "--" expected_flatten: "wrong--base" expected_error: "<class 'ValueError'>" id: "objects15-color_spec15----wrong--base-ValueError"📌 Setup phase
duration:
0.0004904074594378471outcome:
passed📌 Call phase
duration:
0.00025947485119104385outcome:
passed📌 Teardown phase
duration:
0.0002822522073984146outcome:
passed
-
-
📄 test_utils_dbusnotify.py
↳ Function: test_notify_create
-
✅ Test 128
📌 Setup phase
duration:
0.0006392085924744606outcome:
passed📌 Call phase
duration:
0.004487889818847179outcome:
passed📌 Teardown phase
duration:
0.00015621259808540344outcome:
passed
↳ Function: test_notify_update
-
✅ Test 129
📌 Setup phase
duration:
0.00017752591520547867outcome:
passed📌 Call phase
duration:
0.015479966066777706outcome:
passed📌 Teardown phase
duration:
0.00015983544290065765outcome:
passed
↳ Function: test_get_server_info
-
✅ Test 130
📌 Setup phase
duration:
0.00017259269952774048outcome:
passed📌 Call phase
duration:
0.0005930829793214798outcome:
passed📌 Teardown phase
duration:
0.00016210507601499557outcome:
passed
↳ Function: test_get_capabilities
-
✅ Test 131
📌 Setup phase
duration:
0.000163910910487175outcome:
passed📌 Call phase
duration:
0.0005335435271263123outcome:
passed📌 Teardown phase
duration:
0.00014367420226335526outcome:
passed
↳ Function: test_notify_and_close
-
✅ Test 132
📌 Setup phase
duration:
0.00018215086311101913outcome:
passed📌 Call phase
duration:
0.2048697229474783outcome:
passed📌 Teardown phase
duration:
0.00021250173449516296outcome:
passed
↳ Function: test_notify_invalid_value
-
✅ Test 133
📌 Setup phase
duration:
0.0002048676833510399outcome:
passed📌 Call phase
duration:
0.0004955753684043884outcome:
passedlog:
- name: dbus.connection msg: Unable to set arguments ('', 0, '', 'Invalid Test', 1234, (), {}, 0) according to signature 'susssasa{sv}i': <class 'TypeError'>: Expected a string or unicode object args: [] levelname: ERROR levelno: 40 pathname: /workspace/tligui_y/slic/.pixi/envs/default/lib/python3.8/site-packages/dbus/connection.py filename: connection.py module: connection exc_info: [] exc_text: [] stack_info: [] lineno: 628 funcName: call_blocking created: 1756472687.8398924 msecs: 839.8923873901367 relativeCreated: 6059.253692626953 thread: 140395488278016 threadName: MainThread processName: MainProcess process: 4261📌 Teardown phase
duration:
0.00016916822642087936outcome:
passed
↳ Function: test_convert_dbus_strings
-
✅ Test 134
📌 Setup phase
duration:
0.00015642959624528885outcome:
passed📌 Call phase
duration:
0.0002211742103099823outcome:
passed📌 Teardown phase
duration:
0.00013734865933656693outcome:
passed
-
-
📄 test_utils_debug.py
↳ Function: test_traceable
-
✅ Test 135
params:cls="<class 'test_utils_debug.A'>", entry=[[10, 20], {}], expected="creating: A(10, 20)"📌 Parameters
params: cls: "<class 'test_utils_debug.A'>" entry: [[10, 20], {}] expected: "creating: A(10, 20)" id: "A-entry0-creating: A(10, 20)"📌 Setup phase
duration:
0.00038358569145202637outcome:
passed📌 Call phase
duration:
0.0010969368740916252outcome:
passed📌 Teardown phase
duration:
0.00023995153605937958outcome:
passed -
✅ Test 136
params:cls="<class 'test_utils_debug.A'>", entry=[[10, 20], {"e": 100}], expected="creating: A(10, 20, e=100)"📌 Parameters
params: cls: "<class 'test_utils_debug.A'>" entry: [[10, 20], {"e": 100}] expected: "creating: A(10, 20, e=100)" id: "A-entry1-creating: A(10, 20, e=100)"📌 Setup phase
duration:
0.0003408733755350113outcome:
passed📌 Call phase
duration:
0.0008845161646604538outcome:
passed📌 Teardown phase
duration:
0.00022642593830823898outcome:
passed -
✅ Test 137
params:cls="<class 'test_utils_debug.A'>", entry=[["foo", [1, 2, 3]], {"flag": true, "data": {"x": 9}}], expected="creating: A('foo', [1, 2, 3], flag=True, data={'x': 9})"📌 Parameters
params: cls: "<class 'test_utils_debug.A'>" entry: [["foo", [1, 2, 3]], {"flag": true, "data": {"x": 9}}] expected: "creating: A('foo', [1, 2, 3], flag=True, data={'x': 9})" id: "A-entry2-creating: A('foo', [1, 2, 3], flag=True, data={'x': 9})"📌 Setup phase
duration:
0.00031679775565862656outcome:
passed📌 Call phase
duration:
0.0009209644049406052outcome:
passed📌 Teardown phase
duration:
0.00021737627685070038outcome:
passed -
✅ Test 138
params:cls="<class 'test_utils_debug.A'>", entry="([CustomObj(big), [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], {'name': 'test', 'meta': 'yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy'})", expected="creating: A(CustomObj(big), [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], name='test', meta='yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy...)"📌 Parameters
params: cls: "<class 'test_utils_debug.A'>" entry: "([CustomObj(big), [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], {'name': 'test', 'meta': 'yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy'})" expected: "creating: A(CustomObj(big), [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], name='test', meta='yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy...)" id: "A-entry3-creating: A(CustomObj(big), [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], name='test', meta='yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy...)"📌 Setup phase
duration:
0.000319579616189003outcome:
passed📌 Call phase
duration:
0.0008234521374106407outcome:
passed📌 Teardown phase
duration:
0.00021009240299463272outcome:
passed -
✅ Test 139
params:cls="<class 'test_utils_debug.A'>", entry=[["AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", [0, 0, 0, 0, 0]], {}], expected="creating: A('AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA..., [0, 0, 0, 0, 0])"📌 Parameters
params: cls: "<class 'test_utils_debug.A'>" entry: [["AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", [0, 0, 0, 0, 0]], {}] expected: "creating: A('AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA..., [0, 0, 0, 0, 0])" id: "A-entry4-creating: A('AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA..., [0, 0, 0, 0, 0])"📌 Setup phase
duration:
0.0003418363630771637outcome:
passed📌 Call phase
duration:
0.0009254571050405502outcome:
passed📌 Teardown phase
duration:
0.00022158119827508926outcome:
passed
↳ Function: test_short_repr
-
✅ Test 140
params:value="abc", cutoff=10, expected="'abc'"📌 Parameters
params: value: "abc" cutoff: 10 expected: "'abc'" id: "abc-10-'abc'"📌 Setup phase
duration:
0.0003330698236823082outcome:
passed📌 Call phase
duration:
0.00017673056572675705outcome:
passed📌 Teardown phase
duration:
0.0001986585557460785outcome:
passed -
✅ Test 142
params:value=12345, cutoff=10, expected="12345"📌 Parameters
params: value: 12345 cutoff: 10 expected: "12345" id: "12345-10-12345"📌 Setup phase
duration:
0.0003908872604370117outcome:
passed📌 Call phase
duration:
0.0002003563567996025outcome:
passed📌 Teardown phase
duration:
0.00020556244999170303outcome:
passed -
✅ Test 143
params:value=[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], cutoff=15, expected="[0, 0, 0, 0, 0,..."📌 Parameters
params: value: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] cutoff: 15 expected: "[0, 0, 0, 0, 0,..." id: "value3-15-[0, 0, 0, 0, 0,..."📌 Setup phase
duration:
0.0003280714154243469outcome:
passed📌 Call phase
duration:
0.00019002333283424377outcome:
passed📌 Teardown phase
duration:
0.00019115209579467773outcome:
passed -
✅ Test 144
params:value=null, cutoff=10, expected="None"📌 Parameters
params: value: null cutoff: 10 expected: "None" id: "None-10-None"📌 Setup phase
duration:
0.0003049280494451523outcome:
passed📌 Call phase
duration:
0.00017473846673965454outcome:
passed📌 Teardown phase
duration:
0.00020040851086378098outcome:
passed
-
-
📄 test_utils_dictext.py
↳ Function: test_attrdict_getattr
-
✅ Test 146
params:data={"x": 1, "y": 2}, attr="x", expected=1📌 Parameters
params: data: {"x": 1, "y": 2} attr: "x" expected: 1 id: "data0-x-1"📌 Setup phase
duration:
0.0003605494275689125outcome:
passed📌 Call phase
duration:
0.0001995069906115532outcome:
passed📌 Teardown phase
duration:
0.00021422840654850006outcome:
passed -
✅ Test 147
params:data={"world": "ok"}, attr="world", expected="ok"📌 Parameters
params: data: {"world": "ok"} attr: "world" expected: "ok" id: "data1-world-ok"📌 Setup phase
duration:
0.00032870471477508545outcome:
passed📌 Call phase
duration:
0.0001772930845618248outcome:
passed📌 Teardown phase
duration:
0.00019217748194932938outcome:
passed -
✅ Test 148
params:data={"outer": {"inner": 42}}, attr="outer", expected={"inner": 42}📌 Parameters
params: data: {"outer": {"inner": 42}} attr: "outer" expected: {"inner": 42} id: "data2-outer-expected2"📌 Setup phase
duration:
0.00030189845710992813outcome:
passed📌 Call phase
duration:
0.0001836586743593216outcome:
passed📌 Teardown phase
duration:
0.0001908726990222931outcome:
passed
↳ Function: test_attrdict_setattr
-
✅ Test 149
params:initial={}, attr="nouveau", value=123📌 Parameters
params: initial: {} attr: "nouveau" value: 123 id: "initial0-nouveau-123"📌 Setup phase
duration:
0.00030025187879800797outcome:
passed📌 Call phase
duration:
0.0001748623326420784outcome:
passed📌 Teardown phase
duration:
0.00021243281662464142outcome:
passed -
✅ Test 150
params:initial={"a": 1}, attr="b", value="valeur"📌 Parameters
params: initial: {"a": 1} attr: "b" value: "valeur" id: "initial1-b-valeur"📌 Setup phase
duration:
0.0003023045137524605outcome:
passed📌 Call phase
duration:
0.00017361994832754135outcome:
passed📌 Teardown phase
duration:
0.00018480140715837479outcome:
passed
↳ Function: test_attrdict_delattr
-
✅ Test 151
params:initial={"a": 1, "b": 2}, to_del="a", expected_keys=["b"]📌 Parameters
params: initial: {"a": 1, "b": 2} to_del: "a" expected_keys: ["b"] id: "initial0-a-expected_keys0"📌 Setup phase
duration:
0.00030526425689458847outcome:
passed📌 Call phase
duration:
0.00022053904831409454outcome:
passed📌 Teardown phase
duration:
0.00019184499979019165outcome:
passed -
✅ Test 152
params:initial={"k": "v"}, to_del="k", expected_keys=[]📌 Parameters
params: initial: {"k": "v"} to_del: "k" expected_keys: [] id: "initial1-k-expected_keys1"📌 Setup phase
duration:
0.0003179851919412613outcome:
passed📌 Call phase
duration:
0.00020609702914953232outcome:
passed📌 Teardown phase
duration:
0.0002040499821305275outcome:
passed
↳ Function: test_attrdict_dir
-
✅ Test 153
params:data={"alpha": 1, "beta": 2}, expected_keys="{'alpha', 'beta'}"📌 Parameters
params: data: {"alpha": 1, "beta": 2} expected_keys: "{'alpha', 'beta'}" id: "data0-expected_keys0"📌 Setup phase
duration:
0.00025107618421316147outcome:
passed📌 Call phase
duration:
0.00017554685473442078outcome:
passed📌 Teardown phase
duration:
0.00017980579286813736outcome:
passed -
✅ Test 154
params:data={}, expected_keys="set()"📌 Parameters
params: data: {} expected_keys: "set()" id: "data1-expected_keys1"📌 Setup phase
duration:
0.00025380123406648636outcome:
passed📌 Call phase
duration:
0.00021602492779493332outcome:
passed📌 Teardown phase
duration:
0.0001901034265756607outcome:
passed
↳ Function: test_attrdict_getattr_and_missing
-
✅ Test 155
params:data={"x": 1, "y": 2}, attr="x", expect_value=1, expect_error=null📌 Parameters
params: data: {"x": 1, "y": 2} attr: "x" expect_value: 1 expect_error: null id: "data0-x-1-None"📌 Setup phase
duration:
0.00036659836769104004outcome:
passed📌 Call phase
duration:
0.00017633195966482162outcome:
passed📌 Teardown phase
duration:
0.00020589493215084076outcome:
passed -
✅ Test 156
params:data={"number": 42}, attr="missing", expect_value=null, expect_error="'MyDict' object has no attribute 'missing'"📌 Parameters
params: data: {"number": 42} attr: "missing" expect_value: null expect_error: "'MyDict' object has no attribute 'missing'" id: "data1-missing-None-'MyDict' object has no attribute 'missing'"📌 Setup phase
duration:
0.0003453260287642479outcome:
passed📌 Call phase
duration:
0.00020555220544338226outcome:
passed📌 Teardown phase
duration:
0.0002023540437221527outcome:
passed
↳ Function: test_dictupdatemixin_init_and_update
-
✅ Test 157
params:init_kwargs={"a": 1, "b": 2}, other=null, kwargs={}, expected={"a": 1, "b": 2}📌 Parameters
params: init_kwargs: {"a": 1, "b": 2} other: null kwargs: {} expected: {"a": 1, "b": 2} id: "init_kwargs0-None-kwargs0-expected0"📌 Setup phase
duration:
0.00035037845373153687outcome:
passed📌 Call phase
duration:
0.00019197911024093628outcome:
passed📌 Teardown phase
duration:
0.0002011796459555626outcome:
passed -
✅ Test 158
params:init_kwargs={}, other={"x": 10, "y": 20}, kwargs={}, expected={"x": 10, "y": 20}📌 Parameters
params: init_kwargs: {} other: {"x": 10, "y": 20} kwargs: {} expected: {"x": 10, "y": 20} id: "init_kwargs1-other1-kwargs1-expected1"📌 Setup phase
duration:
0.0003351764753460884outcome:
passed📌 Call phase
duration:
0.00019394047558307648outcome:
passed📌 Teardown phase
duration:
0.00021537858992815018outcome:
passed -
✅ Test 159
params:init_kwargs={"world": "ok"}, other={"number": 42}, kwargs={"num2": 100}, expected={"world": "ok", "number": 42, "num2": 100}📌 Parameters
params: init_kwargs: {"world": "ok"} other: {"number": 42} kwargs: {"num2": 100} expected: {"world": "ok", "number": 42, "num2": 100} id: "init_kwargs2-other2-kwargs2-expected2"📌 Setup phase
duration:
0.00034724362194538116outcome:
passed📌 Call phase
duration:
0.00018879398703575134outcome:
passed📌 Teardown phase
duration:
0.00019885413348674774outcome:
passed -
✅ Test 160
params:init_kwargs={}, other=null, kwargs={"alpha": "beta"}, expected={"alpha": "beta"}📌 Parameters
params: init_kwargs: {} other: null kwargs: {"alpha": "beta"} expected: {"alpha": "beta"} id: "init_kwargs3-None-kwargs3-expected3"📌 Setup phase
duration:
0.0003542192280292511outcome:
passed📌 Call phase
duration:
0.0001760656014084816outcome:
passed📌 Teardown phase
duration:
0.00019870977848768234outcome:
passed -
✅ Test 161
params:init_kwargs={}, other={"key": "value"}, kwargs={"extra": 1}, expected={"key": "value", "extra": 1}📌 Parameters
params: init_kwargs: {} other: {"key": "value"} kwargs: {"extra": 1} expected: {"key": "value", "extra": 1} id: "init_kwargs4-other4-kwargs4-expected4"📌 Setup phase
duration:
0.0003561871126294136outcome:
passed📌 Call phase
duration:
0.00018107518553733826outcome:
passed📌 Teardown phase
duration:
0.0002028942108154297outcome:
passed -
✅ Test 162
params:init_kwargs={}, other=[["key", "value"], ["list", [5, 6]]], kwargs={"extra": {"subkey": 123}}, expected={"key": "value", "list": [5, 6], "extra": {"subkey": 123}}📌 Parameters
params: init_kwargs: {} other: [["key", "value"], ["list", [5, 6]]] kwargs: {"extra": {"subkey": 123}} expected: {"key": "value", "list": [5, 6], "extra": {"subkey": 123}} id: "init_kwargs5-other5-kwargs5-expected5"📌 Setup phase
duration:
0.0003356263041496277outcome:
passed📌 Call phase
duration:
0.00032537244260311127outcome:
passed📌 Teardown phase
duration:
0.00020722020417451859outcome:
passed
-
-
📄 test_utils_dotdir.py
↳ Function: test_dotdir_creation_and_base_exists
-
✅ Test 163
📌 Setup phase
duration:
0.00132050272077322outcome:
passed📌 Call phase
duration:
0.00030280184000730515outcome:
passed📌 Teardown phase
duration:
0.00025622081011533737outcome:
passed
↳ Function: test_dotdir_repr_returns_path_str
-
✅ Test 164
📌 Setup phase
duration:
0.000651797279715538outcome:
passed📌 Call phase
duration:
0.0002655833959579468outcome:
passed📌 Teardown phase
duration:
0.0002463953569531441outcome:
passed
↳ Function: test_dotdir_call
-
✅ Test 165
📌 Setup phase
duration:
0.0006705168634653091outcome:
passed📌 Call phase
duration:
0.0004375362768769264outcome:
passed📌 Teardown phase
duration:
0.00025258399546146393outcome:
passed
-
-
📄 test_utils_duo.py
↳ Function: TestPickledDictReal
-
✅ Test 166
📌 Setup phase
duration:
0.00017044972628355026outcome:
passed📌 Call phase
duration:
0.002642218954861164outcome:
passed📌 Teardown phase
duration:
0.00018510129302740097outcome:
passed -
✅ Test 167
📌 Setup phase
duration:
0.0001552226021885872outcome:
passed📌 Call phase
duration:
0.0016341833397746086outcome:
passed📌 Teardown phase
duration:
0.00016471557319164276outcome:
passed
↳ Function: TestSecrets
-
✅ Test 168
📌 Setup phase
duration:
0.0006946185603737831outcome:
passed📌 Call phase
duration:
0.0017945989966392517outcome:
passed📌 Teardown phase
duration:
0.000413297675549984outcome:
passed -
✅ Test 169
📌 Setup phase
duration:
0.0006393613293766975outcome:
passed📌 Call phase
duration:
0.002344151958823204outcome:
passed📌 Teardown phase
duration:
0.0003784177824854851outcome:
passed -
✅ Test 170
📌 Setup phase
duration:
0.000619230791926384outcome:
passed📌 Call phase
duration:
0.0012124134227633476outcome:
passedstdout:
📌 Teardown phase
duration:
0.00036678649485111237outcome:
passed
↳ Function: test_get_pgroup_raises_if_no_key
-
✅ Test 171
📌 Setup phase
duration:
0.00024936161935329437outcome:
passed📌 Call phase
duration:
0.00043673161417245865outcome:
passed📌 Teardown phase
duration:
0.00023425277322530746outcome:
passed
↳ Function: test_get_pgroup_info_with_props_same_name_and_pi
-
✅ Test 172
📌 Setup phase
duration:
0.00023029744625091553outcome:
passed📌 Call phase
duration:
0.00024361815303564072outcome:
passed📌 Teardown phase
duration:
0.00016810186207294464outcome:
passed
↳ Function: test_get_pgroup_info_with_props_different_pi
-
✅ Test 173
📌 Setup phase
duration:
0.00020875036716461182outcome:
passed📌 Call phase
duration:
0.00022630207240581512outcome:
passed📌 Teardown phase
duration:
0.00017022434622049332outcome:
passed
↳ Function: test_get_pgroup_info_without_props_with_owner
-
✅ Test 174
📌 Setup phase
duration:
0.00022168271243572235outcome:
passed📌 Call phase
duration:
0.00020489655435085297outcome:
passed📌 Teardown phase
duration:
0.0001682378351688385outcome:
passed
↳ Function: test_get_pgroup_info_without_props_no_owner
-
✅ Test 175
📌 Setup phase
duration:
0.00022532977163791656outcome:
passed📌 Call phase
duration:
0.00020671728998422623outcome:
passed📌 Teardown phase
duration:
0.00016145594418048859outcome:
passed
↳ Function: test_get_pgroup_info_mock
-
✅ Test 176
📌 Setup phase
duration:
0.00020904559642076492outcome:
passed📌 Call phase
duration:
0.00019998010247945786outcome:
passed📌 Teardown phase
duration:
0.00017512869089841843outcome:
passed
-
-
📄 test_utils_elog.py
↳ Function: test_get_default_elog_instance_with_direct_password_and_real_check
-
✅ Test 177
📌 Setup phase
duration:
0.00016677845269441605outcome:
passed📌 Call phase
duration:
0.020689217373728752outcome:
passed📌 Teardown phase
duration:
0.00023341644555330276outcome:
passed
↳ Function: test_get_default_elog_instance_with_wrong_password_and_real_check
-
✅ Test 178
📌 Setup phase
duration:
0.0001720832660794258outcome:
passed📌 Call phase
duration:
0.006211049854755402outcome:
passed📌 Teardown phase
duration:
0.0001846281811594963outcome:
passed
↳ Function: test_get_default_elog_instance_asks_password
-
✅ Test 179
📌 Setup phase
duration:
0.00018457043915987015outcome:
passed📌 Call phase
duration:
0.015128370374441147outcome:
passedstdout:
Enter elog password for user: robot📌 Teardown phase
duration:
0.00022822991013526917outcome:
passed
↳ Function: test_get_default_elog_with_path_home
-
✅ Test 180
📌 Setup phase
duration:
0.00017446372658014297outcome:
passed📌 Call phase
duration:
0.01386988814920187outcome:
passed📌 Teardown phase
duration:
0.00022573862224817276outcome:
passed
↳ Function: test_screenshot
-
✅ Test 181
📌 Setup phase
duration:
0.00016689952462911606outcome:
passed📌 Call phase
duration:
0.02414887398481369outcome:
passed📌 Teardown phase
duration:
0.00022307783365249634outcome:
passed
-
-
📄 test_utils_eval.py
↳ Function: test_arithmetic_eval_valid
-
✅ Test 182
params:expr="1 + 2", expected=3📌 Parameters
params: expr: "1 + 2" expected: 3 id: "1 + 2-3"📌 Setup phase
duration:
0.0003921911120414734outcome:
passed📌 Call phase
duration:
0.0002413848415017128outcome:
passed📌 Teardown phase
duration:
0.00020284950733184814outcome:
passed -
✅ Test 183
params:expr="4 - 2", expected=2📌 Parameters
params: expr: "4 - 2" expected: 2 id: "4 - 2-2"📌 Setup phase
duration:
0.0003018714487552643outcome:
passed📌 Call phase
duration:
0.00020969845354557037outcome:
passed📌 Teardown phase
duration:
0.0001828232780098915outcome:
passed -
✅ Test 184
params:expr="3 * 5", expected=15📌 Parameters
params: expr: "3 * 5" expected: 15 id: "3 * 5-15"📌 Setup phase
duration:
0.00027134548872709274outcome:
passed📌 Call phase
duration:
0.00018995068967342377outcome:
passed📌 Teardown phase
duration:
0.0001870831474661827outcome:
passed -
✅ Test 185
params:expr="10 / 2", expected=5.0📌 Parameters
params: expr: "10 / 2" expected: 5.0 id: "10 / 2-5.0"📌 Setup phase
duration:
0.0002605542540550232outcome:
passed📌 Call phase
duration:
0.00019677821546792984outcome:
passed📌 Teardown phase
duration:
0.00018328800797462463outcome:
passed -
✅ Test 186
params:expr="10 % 3", expected=1📌 Parameters
params: expr: "10 % 3" expected: 1 id: "10 % 3-1"📌 Setup phase
duration:
0.0002572890371084213outcome:
passed📌 Call phase
duration:
0.0001919865608215332outcome:
passed📌 Teardown phase
duration:
0.00018144398927688599outcome:
passed -
✅ Test 187
params:expr="-5", expected=-5📌 Parameters
params: expr: "-5" expected: -5 id: "-5--5"📌 Setup phase
duration:
0.00027520302683115005outcome:
passed📌 Call phase
duration:
0.00019962899386882782outcome:
passed📌 Teardown phase
duration:
0.0001735202968120575outcome:
passed -
✅ Test 188
params:expr="+7", expected=7📌 Parameters
params: expr: "+7" expected: 7 id: "+7-7"📌 Setup phase
duration:
0.00026380084455013275outcome:
passed📌 Call phase
duration:
0.0001945262774825096outcome:
passed📌 Teardown phase
duration:
0.00021871179342269897outcome:
passed -
✅ Test 189
params:expr="1 + 2 * 3", expected=7📌 Parameters
params: expr: "1 + 2 * 3" expected: 7 id: "1 + 2 * 3-7"📌 Setup phase
duration:
0.00026482902467250824outcome:
passed📌 Call phase
duration:
0.0002155490219593048outcome:
passed📌 Teardown phase
duration:
0.00017923209816217422outcome:
passed -
✅ Test 190
params:expr="(1 + 2) * 3", expected=9📌 Parameters
params: expr: "(1 + 2) * 3" expected: 9 id: "(1 + 2) * 3-9"📌 Setup phase
duration:
0.00024935323745012283outcome:
passed📌 Call phase
duration:
0.00020038429647684097outcome:
passed📌 Teardown phase
duration:
0.0001825578510761261outcome:
passed -
✅ Test 191
params:expr="-(-3)", expected=3📌 Parameters
params: expr: "-(-3)" expected: 3 id: "-(-3)-3"📌 Setup phase
duration:
0.0002653244882822037outcome:
passed📌 Call phase
duration:
0.00019650347530841827outcome:
passed📌 Teardown phase
duration:
0.00016990862786769867outcome:
passed -
✅ Test 192
params:expr="-2 + 4 * 2", expected=6📌 Parameters
params: expr: "-2 + 4 * 2" expected: 6 id: "-2 + 4 * 2-6"📌 Setup phase
duration:
0.0002686120569705963outcome:
passed📌 Call phase
duration:
0.00020060501992702484outcome:
passed📌 Teardown phase
duration:
0.00018794462084770203outcome:
passed -
✅ Test 193
params:expr="(4 + 5) * (6 - 1)", expected=45📌 Parameters
params: expr: "(4 + 5) * (6 - 1)" expected: 45 id: "(4 + 5) * (6 - 1)-45"📌 Setup phase
duration:
0.00025574397295713425outcome:
passed📌 Call phase
duration:
0.0002169078215956688outcome:
passed📌 Teardown phase
duration:
0.0001813117414712906outcome:
passed -
✅ Test 194
params:expr="(((3)))", expected=3📌 Parameters
params: expr: "(((3)))" expected: 3 id: "(((3)))-3"📌 Setup phase
duration:
0.00030832458287477493outcome:
passed📌 Call phase
duration:
0.00020259618759155273outcome:
passed📌 Teardown phase
duration:
0.00017810333520174026outcome:
passed -
✅ Test 195
params:expr="-(-(-2))", expected=-2📌 Parameters
params: expr: "-(-(-2))" expected: -2 id: "-(-(-2))--2"📌 Setup phase
duration:
0.0002610376104712486outcome:
passed📌 Call phase
duration:
0.0002067210152745247outcome:
passed📌 Teardown phase
duration:
0.0001840144395828247outcome:
passed -
✅ Test 196
params:expr="3 + +4", expected=7📌 Parameters
params: expr: "3 + +4" expected: 7 id: "3 + +4-7"📌 Setup phase
duration:
0.0002632392570376396outcome:
passed📌 Call phase
duration:
0.00021616462618112564outcome:
passed📌 Teardown phase
duration:
0.00018147379159927368outcome:
passed -
✅ Test 197
params:expr="3 + -4", expected=-1📌 Parameters
params: expr: "3 + -4" expected: -1 id: "3 + -4--1"📌 Setup phase
duration:
0.0002659521996974945outcome:
passed📌 Call phase
duration:
0.00019844528287649155outcome:
passed📌 Teardown phase
duration:
0.00018774624913930893outcome:
passed -
✅ Test 198
params:expr="True + 1", expected=2📌 Parameters
params: expr: "True + 1" expected: 2 id: "True + 1-2"📌 Setup phase
duration:
0.00026494357734918594outcome:
passed📌 Call phase
duration:
0.00019084196537733078outcome:
passed📌 Teardown phase
duration:
0.00019752699881792068outcome:
passed -
✅ Test 199
params:expr="'string'", expected="string"📌 Parameters
params: expr: "'string'" expected: "string" id: "'string'-string"📌 Setup phase
duration:
0.0002725338563323021outcome:
passed📌 Call phase
duration:
0.0001924131065607071outcome:
passed📌 Teardown phase
duration:
0.000177847221493721outcome:
passed -
✅ Test 200
params:expr="1e1000 * 1e1000", expected=Infinity📌 Parameters
params: expr: "1e1000 * 1e1000" expected: Infinity id: "1e1000 * 1e1000-inf"📌 Setup phase
duration:
0.00026090536266565323outcome:
passed📌 Call phase
duration:
0.00021165143698453903outcome:
passed📌 Teardown phase
duration:
0.00018190406262874603outcome:
passed -
✅ Test 201
params:expr="'a' + 'b'", expected="ab"📌 Parameters
params: expr: "'a' + 'b'" expected: "ab" id: "'a' + 'b'-ab"📌 Setup phase
duration:
0.0002817055210471153outcome:
passed📌 Call phase
duration:
0.00019328948110342026outcome:
passed📌 Teardown phase
duration:
0.0001711258664727211outcome:
passed
↳ Function: test_arithmetic_eval_raises_with_message
-
✅ Test 202
params:expr="2 ** 3", expected_message="Unsupported BinOp Pow"📌 Parameters
params: expr: "2 ** 3" expected_message: "Unsupported BinOp Pow" id: "2 ** 3-Unsupported BinOp Pow"📌 Setup phase
duration:
0.00025523826479911804outcome:
passed📌 Call phase
duration:
0.0004426566883921623outcome:
passed📌 Teardown phase
duration:
0.0001895129680633545outcome:
passed -
✅ Test 203
params:expr="3 << 1", expected_message="Unsupported BinOp LShift"📌 Parameters
params: expr: "3 << 1" expected_message: "Unsupported BinOp LShift" id: "3 << 1-Unsupported BinOp LShift"📌 Setup phase
duration:
0.00026382412761449814outcome:
passed📌 Call phase
duration:
0.00042493175715208054outcome:
passed📌 Teardown phase
duration:
0.00018620770424604416outcome:
passed -
✅ Test 204
params:expr="1 < 2", expected_message="Unsupported node type Compare"📌 Parameters
params: expr: "1 < 2" expected_message: "Unsupported node type Compare" id: "1 < 2-Unsupported node type Compare"📌 Setup phase
duration:
0.0002859877422451973outcome:
passed📌 Call phase
duration:
0.0004221992567181587outcome:
passed📌 Teardown phase
duration:
0.00018533971160650253outcome:
passed -
✅ Test 205
params:expr="abs(3)", expected_message="Unsupported node type Call"📌 Parameters
params: expr: "abs(3)" expected_message: "Unsupported node type Call" id: "abs(3)-Unsupported node type Call"📌 Setup phase
duration:
0.0002738023176789284outcome:
passed📌 Call phase
duration:
0.00039993878453969955outcome:
passed📌 Teardown phase
duration:
0.00018964149057865143outcome:
passed -
✅ Test 206
params:expr="a + 2", expected_message="Unsupported node type Name"📌 Parameters
params: expr: "a + 2" expected_message: "Unsupported node type Name" id: "a + 2-Unsupported node type Name"📌 Setup phase
duration:
0.00030912458896636963outcome:
passed📌 Call phase
duration:
0.00041039008647203445outcome:
passed📌 Teardown phase
duration:
0.00018703006207942963outcome:
passed -
✅ Test 207
params:expr="string", expected_message="Unsupported node type Name"📌 Parameters
params: expr: "string" expected_message: "Unsupported node type Name" id: "string-Unsupported node type Name"📌 Setup phase
duration:
0.0002752607688307762outcome:
passed📌 Call phase
duration:
0.00022253300994634628outcome:
passed📌 Teardown phase
duration:
0.00018583610653877258outcome:
passed -
✅ Test 208
params:expr="[1, 2] + [3]", expected_message="Unsupported node type List"📌 Parameters
params: expr: "[1, 2] + [3]" expected_message: "Unsupported node type List" id: "[1, 2] + [3]-Unsupported node type List"📌 Setup phase
duration:
0.00026401132345199585outcome:
passed📌 Call phase
duration:
0.0003861561417579651outcome:
passed📌 Teardown phase
duration:
0.0001782374456524849outcome:
passed -
✅ Test 209
params:expr="{1: 2}", expected_message="Unsupported node type Dict"📌 Parameters
params: expr: "{1: 2}" expected_message: "Unsupported node type Dict" id: "{1: 2}-Unsupported node type Dict"📌 Setup phase
duration:
0.00026628468185663223outcome:
passed📌 Call phase
duration:
0.0005006948485970497outcome:
passed📌 Teardown phase
duration:
0.00018082186579704285outcome:
passed
↳ Function: test_arithmetic_eval_runtime_errors
-
✅ Test 210
params:expr="1 / 0", exception="<class 'ZeroDivisionError'>"📌 Parameters
params: expr: "1 / 0" exception: "<class 'ZeroDivisionError'>" id: "1 / 0-ZeroDivisionError"📌 Setup phase
duration:
0.0002715541049838066outcome:
passed📌 Call phase
duration:
0.00022805668413639069outcome:
passed📌 Teardown phase
duration:
0.00018595997244119644outcome:
passed -
✅ Test 211
params:expr="10 % 0", exception="<class 'ZeroDivisionError'>"📌 Parameters
params: expr: "10 % 0" exception: "<class 'ZeroDivisionError'>" id: "10 % 0-ZeroDivisionError"📌 Setup phase
duration:
0.00026475824415683746outcome:
passed📌 Call phase
duration:
0.00023183505982160568outcome:
passed📌 Teardown phase
duration:
0.00017548352479934692outcome:
passed
↳ Function: test_forgiving_eval
-
✅ Test 212
params:expr="1 + 2", expected=3📌 Parameters
params: expr: "1 + 2" expected: 3 id: "1 + 2-3"📌 Setup phase
duration:
0.0002789720892906189outcome:
passed📌 Call phase
duration:
0.00021428149193525314outcome:
passed📌 Teardown phase
duration:
0.00017814990133047104outcome:
passed -
✅ Test 213
params:expr="bad + 2", expected="bad + 2"📌 Parameters
params: expr: "bad + 2" expected: "bad + 2" id: "bad + 2-bad + 2"📌 Setup phase
duration:
0.0002620108425617218outcome:
passed📌 Call phase
duration:
0.00021031498908996582outcome:
passed📌 Teardown phase
duration:
0.00019118748605251312outcome:
passed -
✅ Test 214
params:expr="1 / 0", expected="1 / 0"📌 Parameters
params: expr: "1 / 0" expected: "1 / 0" id: "1 / 0-1 / 0"📌 Setup phase
duration:
0.000270831398665905outcome:
passed📌 Call phase
duration:
0.00021283794194459915outcome:
passed📌 Teardown phase
duration:
0.0001758001744747162outcome:
passed -
✅ Test 215
params:expr="2 ** 10", expected="2 ** 10"📌 Parameters
params: expr: "2 ** 10" expected: "2 ** 10" id: "2 ** 10-2 ** 10"📌 Setup phase
duration:
0.0002543739974498749outcome:
passed📌 Call phase
duration:
0.000199122354388237outcome:
passed📌 Teardown phase
duration:
0.0001753261312842369outcome:
passed
↳ Function: test_defaulting_eval
-
✅ Test 216
params:expr="3 * 4", default=0, expected=12📌 Parameters
params: expr: "3 * 4" default: 0 expected: 12 id: "3 * 4-0-12"📌 Setup phase
duration:
0.0003231838345527649outcome:
passed📌 Call phase
duration:
0.00019384641200304031outcome:
passed📌 Teardown phase
duration:
0.00020085647702217102outcome:
passed -
✅ Test 217
params:expr="invalid + 1", default=99, expected=99📌 Parameters
params: expr: "invalid + 1" default: 99 expected: 99 id: "invalid + 1-99-99"📌 Setup phase
duration:
0.00032316427677869797outcome:
passed📌 Call phase
duration:
0.0002208789810538292outcome:
passed📌 Teardown phase
duration:
0.00019223801791667938outcome:
passed -
✅ Test 218
params:expr="1 / 0", default=-1, expected=-1📌 Parameters
params: expr: "1 / 0" default: -1 expected: -1 id: "1 / 0--1--1"📌 Setup phase
duration:
0.0002954583615064621outcome:
passed📌 Call phase
duration:
0.00020232237875461578outcome:
passed📌 Teardown phase
duration:
0.00019392464309930801outcome:
passed -
✅ Test 219
params:expr="2 ** 10", default=42, expected=42📌 Parameters
params: expr: "2 ** 10" default: 42 expected: 42 id: "2 ** 10-42-42"📌 Setup phase
duration:
0.0002951929345726967outcome:
passed📌 Call phase
duration:
0.0002022217959165573outcome:
passed📌 Teardown phase
duration:
0.00020910892635583878outcome:
passed
-
-
📄 test_utils_exceptions.py
↳ Function: test_chained_exception_various
-
✅ Test 220
params:func="<function cause_key_error at 0x7fb009b61280>", expected_output="High-level task failed\ncaused by KeyError: 'missing'"📌 Parameters
params: func: "<function cause_key_error at 0x7fb009b61280>" expected_output: "High-level task failed\ncaused by KeyError: 'missing'" id: "cause_key_error-High-level task failed\\ncaused by KeyError: 'missing'"📌 Setup phase
duration:
0.00027673039585351944outcome:
passed📌 Call phase
duration:
0.00022086873650550842outcome:
passed📌 Teardown phase
duration:
0.00018515251576900482outcome:
passed -
✅ Test 221
params:func="<function cause_index_error at 0x7fb009b613a0>", expected_output="High-level task failed\ncaused by IndexError: list index out of range"📌 Parameters
params: func: "<function cause_index_error at 0x7fb009b613a0>" expected_output: "High-level task failed\ncaused by IndexError: list index out of range" id: "cause_index_error-High-level task failed\\ncaused by IndexError: list index out of range"📌 Setup phase
duration:
0.0002742903307080269outcome:
passed📌 Call phase
duration:
0.00018043257296085358outcome:
passed📌 Teardown phase
duration:
0.00017782021313905716outcome:
passed -
✅ Test 222
params:func="<function cause_zero_division at 0x7fb009b61430>", expected_output="High-level task failed\ncaused by ZeroDivisionError: division by zero"📌 Parameters
params: func: "<function cause_zero_division at 0x7fb009b61430>" expected_output: "High-level task failed\ncaused by ZeroDivisionError: division by zero" id: "cause_zero_division-High-level task failed\\ncaused by ZeroDivisionError: division by zero"📌 Setup phase
duration:
0.0002624187618494034outcome:
passed📌 Call phase
duration:
0.0001873178407549858outcome:
passed📌 Teardown phase
duration:
0.0001923060044646263outcome:
passed -
✅ Test 223
params:func="<function cause_value_error at 0x7fb009b614c0>", expected_output="High-level task failed\ncaused by ValueError: invalid literal for int() with base 10: 'not_a_number'"📌 Parameters
params: func: "<function cause_value_error at 0x7fb009b614c0>" expected_output: "High-level task failed\ncaused by ValueError: invalid literal for int() with base 10: 'not_a_number'" id: "cause_value_error-High-level task failed\\ncaused by ValueError: invalid literal for int() with base 10: 'not_a_number'"📌 Setup phase
duration:
0.0002628471702337265outcome:
passed📌 Call phase
duration:
0.0001905970275402069outcome:
passed📌 Teardown phase
duration:
0.0001811441034078598outcome:
passed -
✅ Test 224
params:func="<function cause_type_error at 0x7fb009b61550>", expected_output="High-level task failed\ncaused by TypeError: can only concatenate str (not \"int\") to str"📌 Parameters
params: func: "<function cause_type_error at 0x7fb009b61550>" expected_output: "High-level task failed\ncaused by TypeError: can only concatenate str (not \"int\") to str" id: "cause_type_error-High-level task failed\\ncaused by TypeError: can only concatenate str (not \"int\") to str"📌 Setup phase
duration:
0.00025053322315216064outcome:
passed📌 Call phase
duration:
0.00017928984016180038outcome:
passed📌 Teardown phase
duration:
0.00018808525055646896outcome:
passed
↳ Function: test_printed_exception
-
✅ Test 225
params:func="<function cause_key_error at 0x7fb009b61280>", expected_output="KeyError: 'missing'"📌 Parameters
params: func: "<function cause_key_error at 0x7fb009b61280>" expected_output: "KeyError: 'missing'" id: "cause_key_error-KeyError: 'missing'"📌 Setup phase
duration:
0.0008219275623559952outcome:
passed📌 Call phase
duration:
0.0011588865891098976outcome:
passed📌 Teardown phase
duration:
0.0005335453897714615outcome:
passed -
✅ Test 226
params:func="<function cause_index_error at 0x7fb009b613a0>", expected_output="IndexError: list index out of range"📌 Parameters
params: func: "<function cause_index_error at 0x7fb009b613a0>" expected_output: "IndexError: list index out of range" id: "cause_index_error-IndexError: list index out of range"📌 Setup phase
duration:
0.0006948448717594147outcome:
passed📌 Call phase
duration:
0.0009222095832228661outcome:
passed📌 Teardown phase
duration:
0.0005398951470851898outcome:
passed -
✅ Test 227
params:func="<function cause_zero_division at 0x7fb009b61430>", expected_output="ZeroDivisionError: division by zero"📌 Parameters
params: func: "<function cause_zero_division at 0x7fb009b61430>" expected_output: "ZeroDivisionError: division by zero" id: "cause_zero_division-ZeroDivisionError: division by zero"📌 Setup phase
duration:
0.0006521688774228096outcome:
passed📌 Call phase
duration:
0.0008914051577448845outcome:
passed📌 Teardown phase
duration:
0.00052658561617136outcome:
passed -
✅ Test 228
params:func="<function cause_value_error at 0x7fb009b614c0>", expected_output="ValueError: invalid literal for int() with base 10: 'not_a_number'"📌 Parameters
params: func: "<function cause_value_error at 0x7fb009b614c0>" expected_output: "ValueError: invalid literal for int() with base 10: 'not_a_number'" id: "cause_value_error-ValueError: invalid literal for int() with base 10: 'not_a_number'"📌 Setup phase
duration:
0.0006619337946176529outcome:
passed📌 Call phase
duration:
0.0009438097476959229outcome:
passed📌 Teardown phase
duration:
0.0005497271195054054outcome:
passed -
✅ Test 229
params:func="<function cause_type_error at 0x7fb009b61550>", expected_output="TypeError: can only concatenate str (not \"int\") to str"📌 Parameters
params: func: "<function cause_type_error at 0x7fb009b61550>" expected_output: "TypeError: can only concatenate str (not \"int\") to str" id: "cause_type_error-TypeError: can only concatenate str (not \"int\") to str"📌 Setup phase
duration:
0.000651712529361248outcome:
passed📌 Call phase
duration:
0.000914539210498333outcome:
passed📌 Teardown phase
duration:
0.0005794921889901161outcome:
passed
-
-
📄 test_utils_get_adj.py
↳ Function: test_get_adj_success
-
✅ Test 230
📌 Setup phase
duration:
0.00017221178859472275outcome:
passed📌 Call phase
duration:
0.000715143047273159outcome:
passed📌 Teardown phase
duration:
0.00015619024634361267outcome:
passed
↳ Function: test_get_adj_not_found
-
✅ Test 231
📌 Setup phase
duration:
0.0005922093987464905outcome:
passed📌 Call phase
duration:
0.001101600006222725outcome:
passed📌 Teardown phase
duration:
0.0005141859874129295outcome:
passed
↳ Function: test_ensure_adjs_mixed
-
✅ Test 232
📌 Setup phase
duration:
0.0001534540206193924outcome:
passed📌 Call phase
duration:
0.0009020697325468063outcome:
passed📌 Teardown phase
duration:
0.00020629912614822388outcome:
passed
-
-
📄 test_utils_ipy.py
↳ Function: test_devices_repr_fallback_and_ignore
-
✅ Test 234
📌 Setup phase
duration:
0.00048597902059555054outcome:
passed📌 Call phase
duration:
0.0010137567296624184outcome:
passedstdout:
test_desc: desc ok test_doc: doc ok test_id: D4 test_name: name ok📌 Teardown phase
duration:
0.0002830950543284416outcome:
passed
-
-
📄 test_utils_jsonext.py
↳ Function: test_json_validate_save_load
-
✅ Test 235
params:input_obj="[1 2 3]", expected=[1, 2, 3]📌 Parameters
params: input_obj: "[1 2 3]" expected: [1, 2, 3] id: "input_obj0-expected0"📌 Setup phase
duration:
0.0006726831197738647outcome:
passed📌 Call phase
duration:
0.0004457654431462288outcome:
passed📌 Teardown phase
duration:
0.00022759847342967987outcome:
passed -
✅ Test 236
params:input_obj="42", expected=42📌 Parameters
params: input_obj: "42" expected: 42 id: "input_obj1-42"📌 Setup phase
duration:
0.0006416710093617439outcome:
passed📌 Call phase
duration:
0.00040454231202602386outcome:
passed📌 Teardown phase
duration:
0.00022056419402360916outcome:
passed -
✅ Test 237
params:input_obj="(1-1j)", expected={"real": 1.0, "imag": -1.0}📌 Parameters
params: input_obj: "(1-1j)" expected: {"real": 1.0, "imag": -1.0} id: "(1-1j)-expected2"📌 Setup phase
duration:
0.0006118500605225563outcome:
passed📌 Call phase
duration:
0.0004401532933115959outcome:
passed📌 Teardown phase
duration:
0.00021855253726243973outcome:
passed -
✅ Test 238
params:input_obj="/tmp/file.txt", expected="/tmp/file.txt"📌 Parameters
params: input_obj: "/tmp/file.txt" expected: "/tmp/file.txt" id: "input_obj3-/tmp/file.txt"📌 Setup phase
duration:
0.0006180480122566223outcome:
passed📌 Call phase
duration:
0.00038392655551433563outcome:
passed📌 Teardown phase
duration:
0.0002459874376654625outcome:
passed -
✅ Test 239
params:input_obj="{1, 2, 3}", expected=[1, 2, 3]📌 Parameters
params: input_obj: "{1, 2, 3}" expected: [1, 2, 3] id: "input_obj4-expected4"📌 Setup phase
duration:
0.0006215441972017288outcome:
passed📌 Call phase
duration:
0.0003934083506464958outcome:
passed📌 Teardown phase
duration:
0.00025338586419820786outcome:
passed -
✅ Test 240
params:input_obj="{'a': array([10, 20])}", expected={"a": [10, 20]}📌 Parameters
params: input_obj: "{'a': array([10, 20])}" expected: {"a": [10, 20]} id: "input_obj5-expected5"📌 Setup phase
duration:
0.0006421012803912163outcome:
passed📌 Call phase
duration:
0.00042331311851739883outcome:
passed📌 Teardown phase
duration:
0.00022945459932088852outcome:
passed -
✅ Test 241
params:input_obj="{'c': (2+3j)}", expected={"c": {"real": 2.0, "imag": 3.0}}📌 Parameters
params: input_obj: "{'c': (2+3j)}" expected: {"c": {"real": 2.0, "imag": 3.0}} id: "input_obj6-expected6"📌 Setup phase
duration:
0.0006423089653253555outcome:
passed📌 Call phase
duration:
0.00043638981878757477outcome:
passed📌 Teardown phase
duration:
0.00021767523139715195outcome:
passed -
✅ Test 242
params:input_obj="{'nested': {'arr': array([[10, 20],\n [30, 40]]), 'complex_num': (-1+5j), 'files': [PosixPath('/file1'), PosixPath('/file2')], 'set_values': {200, 100}, 'inner': {'num': 7}}}", expected={"nested": {"arr": [[10, 20], [30, 40]], "complex_num": {"real": -1.0, "imag": 5.0}, "files": ["/file1", "/file2"], "set_values": [100, 200], "inner": {"num": 7}}}📌 Parameters
params: input_obj: "{'nested': {'arr': array([[10, 20],\n [30, 40]]), 'complex_num': (-1+5j), 'files': [PosixPath('/file1'), PosixPath('/file2')], 'set_values': {200, 100}, 'inner': {'num': 7}}}" expected: {"nested": {"arr": [[10, 20], [30, 40]], "complex_num": {"real": -1.0, "imag": 5.0}, "files": ["/file1", "/file2"], "set_values": [100, 200], "inner": {"num": 7}}} id: "input_obj7-expected7"📌 Setup phase
duration:
0.0006417324766516685outcome:
passed📌 Call phase
duration:
0.0007164506241679192outcome:
passed📌 Teardown phase
duration:
0.00023430585861206055outcome:
passed
-
-
📄 test_utils_lazypv.py
↳ Function: test_getattr
-
✅ Test 243
📌 Setup phase
duration:
0.00017656851559877396outcome:
passed📌 Call phase
duration:
0.09744696598500013outcome:
passed📌 Teardown phase
duration:
0.0005318345502018929outcome:
passed
-
-
📄 test_utils_logcfg.py
↳ Function: test_custom_log_outputs
-
✅ Test 244
params:levelname="LONG", logfunc="<function <lambda> at 0x7fb009b5c790>", message="This is a LONG message"📌 Parameters
params: levelname: "LONG" logfunc: "<function <lambda> at 0x7fb009b5c790>" message: "This is a LONG message" id: "LONG-<lambda>-This is a LONG message"📌 Setup phase
duration:
0.0022179540246725082outcome:
passed📌 Call phase
duration:
0.0014625554904341698outcome:
passedstdout:
Captured stderr: '[L 250829 13:04:48 test_utils_logcfg:41] This is a LONG message\n'📌 Teardown phase
duration:
0.00035570748150348663outcome:
passed -
✅ Test 245
params:levelname="ENLARGE", logfunc="<function <lambda> at 0x7fb009b5c820>", message="Please ENLARGE this!"📌 Parameters
params: levelname: "ENLARGE" logfunc: "<function <lambda> at 0x7fb009b5c820>" message: "Please ENLARGE this!" id: "ENLARGE-<lambda>-Please ENLARGE this!"📌 Setup phase
duration:
0.00048232264816761017outcome:
passed📌 Call phase
duration:
0.0008388357236981392outcome:
passedstdout:
Captured stderr: '[E 250829 13:04:48 test_utils_logcfg:41] Please ENLARGE this!\n'📌 Teardown phase
duration:
0.00029149651527404785outcome:
passed
-
-
📄 test_utils_logign.py
↳ Function: test_ignore_log_msg_behavior
-
✅ Test 247
params:levelname="WARNING", msg_to_ignore="This should be ignored", msg_to_keep="This should appear"📌 Parameters
params: levelname: "WARNING" msg_to_ignore: "This should be ignored" msg_to_keep: "This should appear" id: "WARNING-This should be ignored-This should appear"📌 Setup phase
duration:
0.0006844056770205498outcome:
passed📌 Call phase
duration:
0.000912962481379509outcome:
passed📌 Teardown phase
duration:
0.0003048041835427284outcome:
passed -
✅ Test 248
params:levelname="ENLARGE", msg_to_ignore="ENLARGE this", msg_to_keep="Keep this ENLARGE"📌 Parameters
params: levelname: "ENLARGE" msg_to_ignore: "ENLARGE this" msg_to_keep: "Keep this ENLARGE" id: "ENLARGE-ENLARGE this-Keep this ENLARGE"📌 Setup phase
duration:
0.00048403721302747726outcome:
passed📌 Call phase
duration:
0.0005518170073628426outcome:
passed📌 Teardown phase
duration:
0.00030808430165052414outcome:
passed
↳ Function: test_ignore_only_by_level
-
✅ Test 249
📌 Setup phase
duration:
0.00029535219073295593outcome:
passed📌 Call phase
duration:
0.00048759765923023224outcome:
passed📌 Teardown phase
duration:
0.0002339724451303482outcome:
passed
↳ Function: test_ignore_only_by_msg
-
✅ Test 250
📌 Setup phase
duration:
0.00029070954769849777outcome:
passed📌 Call phase
duration:
0.0004677744582295418outcome:
passed📌 Teardown phase
duration:
0.0002278648316860199outcome:
passed
↳ Function: test_filter_removed_after_context
-
✅ Test 251
📌 Setup phase
duration:
0.00028251949697732925outcome:
passed📌 Call phase
duration:
0.00040415674448013306outcome:
passed📌 Teardown phase
duration:
0.00022573955357074738outcome:
passed
-
-
📄 test_utils_marker.py
↳ Function: test_format_value_with_units
-
✅ Test 252
📌 Setup phase
duration:
0.00018387939780950546outcome:
passed📌 Call phase
duration:
0.0002490449696779251outcome:
passed📌 Teardown phase
duration:
0.00015003327280282974outcome:
passed
↳ Function: test_format_value_without_units
-
✅ Test 253
📌 Setup phase
duration:
0.00015502329915761948outcome:
passed📌 Call phase
duration:
0.00022106152027845383outcome:
passed📌 Teardown phase
duration:
0.00016668997704982758outcome:
passed
↳ Function: test_marker_name_default
-
✅ Test 254
📌 Setup phase
duration:
0.0001942915841937065outcome:
passed📌 Call phase
duration:
0.0003100605681538582outcome:
passed📌 Teardown phase
duration:
0.00014180690050125122outcome:
passed
↳ Function: test_marker_name_custom
-
✅ Test 255
📌 Setup phase
duration:
0.0001397896558046341outcome:
passed📌 Call phase
duration:
0.00021307636052370071outcome:
passed📌 Teardown phase
duration:
0.00013434328138828278outcome:
passed
↳ Function: test_marker_repr_format
-
✅ Test 256
📌 Setup phase
duration:
0.00014622509479522705outcome:
passed📌 Call phase
duration:
0.00023331213742494583outcome:
passed📌 Teardown phase
duration:
0.0001325644552707672outcome:
passed
↳ Function: test_marker_update_changes_value
-
✅ Test 257
📌 Setup phase
duration:
0.00014468561857938766outcome:
passed📌 Call phase
duration:
0.0002213241532444954outcome:
passed📌 Teardown phase
duration:
0.00014651287347078323outcome:
passed
↳ Function: test_marker_update_with_explicit_value
-
✅ Test 258
📌 Setup phase
duration:
0.00015082675963640213outcome:
passed📌 Call phase
duration:
0.00017303694039583206outcome:
passed📌 Teardown phase
duration:
0.00014107022434473038outcome:
passed
↳ Function: test_marker_goto_sets_value_and_returns_result
-
✅ Test 259
📌 Setup phase
duration:
0.00017081014811992645outcome:
passed📌 Call phase
duration:
0.000795694999396801outcome:
passedstdout:
Going to "Device_TGG at 3.3 V"📌 Teardown phase
duration:
0.00016175676137208939outcome:
passed
↳ Function: test_marker_call_is_alias_of_goto
-
✅ Test 260
📌 Setup phase
duration:
0.00017646513879299164outcome:
passed📌 Call phase
duration:
0.0006699841469526291outcome:
passedstdout:
Going to "Device_TAC at 3.3 V"📌 Teardown phase
duration:
0.00016409531235694885outcome:
passed
↳ Function: test_markers_register_and_access
-
✅ Test 261
📌 Setup phase
duration:
0.00018887780606746674outcome:
passed📌 Call phase
duration:
0.00038235168904066086outcome:
passed📌 Teardown phase
duration:
0.00015151314437389374outcome:
passed
↳ Function: test_markers_repr_contains_all
-
✅ Test 262
📌 Setup phase
duration:
0.00015020370483398438outcome:
passed📌 Call phase
duration:
0.0004153875634074211outcome:
passed📌 Teardown phase
duration:
0.00016125570982694626outcome:
passed
↳ Function: test_marker_registry_dict_is_printable_dict
-
✅ Test 263
📌 Setup phase
duration:
0.00015943311154842377outcome:
passed📌 Call phase
duration:
0.0002759583294391632outcome:
passed📌 Teardown phase
duration:
0.00013868790119886398outcome:
passed
↳ Function: test_markers_getitem_invalid_key_raises
-
✅ Test 264
📌 Setup phase
duration:
0.0001607043668627739outcome:
passed📌 Call phase
duration:
0.0002943035215139389outcome:
passed📌 Teardown phase
duration:
0.00016183312982320786outcome:
passed
-
-
📄 test_utils_metaclasses.py
↳ Function: test_combine_classes_combines_methods
-
✅ Test 265
📌 Setup phase
duration:
0.0001701563596725464outcome:
passed📌 Call phase
duration:
0.00022857636213302612outcome:
passed📌 Teardown phase
duration:
0.0001537976786494255outcome:
passed
↳ Function: test_registryabc_combines_registrymeta_and_abcmeta
-
✅ Test 266
📌 Setup phase
duration:
0.00015425961464643478outcome:
passed📌 Call phase
duration:
0.005449840798974037outcome:
passed📌 Teardown phase
duration:
0.0001813666895031929outcome:
passed
-
-
📄 test_utils_namespace.py
↳ Function: test_namespace_pretty_repr_mixed_and_nested
-
✅ Test 267
📌 Setup phase
duration:
0.00022431649267673492outcome:
passed📌 Call phase
duration:
0.0003694072365760803outcome:
passed📌 Teardown phase
duration:
0.00015108007937669754outcome:
passed
-
-
📄 test_utils_npy.py
↳ Function: test_nice_arange
-
✅ Test 268
params:start=0, stop=5, step=1, expected=[0, 1, 2, 3, 4, 5]📌 Parameters
params: start: 0 stop: 5 step: 1 expected: [0, 1, 2, 3, 4, 5] id: "0-5-1-expected0"📌 Setup phase
duration:
0.0004284735769033432outcome:
passed📌 Call phase
duration:
0.021169408224523067outcome:
passed📌 Teardown phase
duration:
0.00034085195511579514outcome:
passed -
✅ Test 269
params:start=5, stop=0, step=-1, expected=[0, 1, 2, 3, 4, 5]📌 Parameters
params: start: 5 stop: 0 step: -1 expected: [0, 1, 2, 3, 4, 5] id: "5-0--1-expected1"📌 Setup phase
duration:
0.0005255024880170822outcome:
passed📌 Call phase
duration:
0.0005309106782078743outcome:
passed📌 Teardown phase
duration:
0.0002774316817522049outcome:
passed -
✅ Test 270
params:start=1, stop=2, step=0.3, expected=[1, 1.3333333333333333, 1.6666666666666667, 2]📌 Parameters
params: start: 1 stop: 2 step: 0.3 expected: [1, 1.3333333333333333, 1.6666666666666667, 2] id: "1-2-0.3-expected2"📌 Setup phase
duration:
0.0004721805453300476outcome:
passed📌 Call phase
duration:
0.0005064224824309349outcome:
passed📌 Teardown phase
duration:
0.00028438493609428406outcome:
passed -
✅ Test 271
params:start=-2, stop=2, step=1.5, expected=[-2, -0.6666666666666666, 0.6666666666666666, 2]📌 Parameters
params: start: -2 stop: 2 step: 1.5 expected: [-2, -0.6666666666666666, 0.6666666666666666, 2] id: "-2-2-1.5-expected3"📌 Setup phase
duration:
0.00048306863754987717outcome:
passed📌 Call phase
duration:
0.0004872148856520653outcome:
passed📌 Teardown phase
duration:
0.00026227906346321106outcome:
passed -
✅ Test 272
params:start=2.5, stop=0.5, step=-0.4, expected=[0.5, 0.9, 1.3, 1.7, 2.1, 2.5]📌 Parameters
params: start: 2.5 stop: 0.5 step: -0.4 expected: [0.5, 0.9, 1.3, 1.7, 2.1, 2.5] id: "2.5-0.5--0.4-expected4"📌 Setup phase
duration:
0.00046673789620399475outcome:
passed📌 Call phase
duration:
0.0005119862034916878outcome:
passed📌 Teardown phase
duration:
0.00028055068105459213outcome:
passed
↳ Function: test_nice_linspace
-
✅ Test 273
params:start=0, stop=10, num=4, expected="[ 0. 2.5 5. 7.5 10. ]"📌 Parameters
params: start: 0 stop: 10 num: 4 expected: "[ 0. 2.5 5. 7.5 10. ]" id: "0-10-4-expected0"📌 Setup phase
duration:
0.00040031131356954575outcome:
passed📌 Call phase
duration:
0.0004283059388399124outcome:
passed📌 Teardown phase
duration:
0.00023521855473518372outcome:
passed -
✅ Test 274
params:start=5, stop=15, num=2, expected="[ 5. 10. 15.]"📌 Parameters
params: start: 5 stop: 15 num: 2 expected: "[ 5. 10. 15.]" id: "5-15-2-expected1"📌 Setup phase
duration:
0.0003971848636865616outcome:
passed📌 Call phase
duration:
0.00042168889194726944outcome:
passed📌 Teardown phase
duration:
0.00024677813053131104outcome:
passed -
✅ Test 275
params:start=-5, stop=5, num=4, expected="[-5. -2.5 0. 2.5 5. ]"📌 Parameters
params: start: -5 stop: 5 num: 4 expected: "[-5. -2.5 0. 2.5 5. ]" id: "-5-5-4-expected2"📌 Setup phase
duration:
0.00038982462137937546outcome:
passed📌 Call phase
duration:
0.0005730306729674339outcome:
passed📌 Teardown phase
duration:
0.0002504643052816391outcome:
passed -
✅ Test 276
params:start=0, stop=1, num=3, expected="[0. 0.33333333 0.66666667 1. ]"📌 Parameters
params: start: 0 stop: 1 num: 3 expected: "[0. 0.33333333 0.66666667 1. ]" id: "0-1-3-expected3"📌 Setup phase
duration:
0.00040997564792633057outcome:
passed📌 Call phase
duration:
0.00041357800364494324outcome:
passed📌 Teardown phase
duration:
0.00023653358221054077outcome:
passed -
✅ Test 277
params:start=2, stop=2, num=3, expected="[2. 2. 2. 2.]"📌 Parameters
params: start: 2 stop: 2 num: 3 expected: "[2. 2. 2. 2.]" id: "2-2-3-expected4"📌 Setup phase
duration:
0.000389651395380497outcome:
passed📌 Call phase
duration:
0.000405716709792614outcome:
passed📌 Teardown phase
duration:
0.00024287868291139603outcome:
passed -
✅ Test 278
params:start=3, stop=0, num=3, expected="[3. 2. 1. 0.]"📌 Parameters
params: start: 3 stop: 0 num: 3 expected: "[3. 2. 1. 0.]" id: "3-0-3-expected5"📌 Setup phase
duration:
0.0003761574625968933outcome:
passed📌 Call phase
duration:
0.0003897054120898247outcome:
passed📌 Teardown phase
duration:
0.0002512028440833092outcome:
passed -
✅ Test 279
params:start=0, stop=1, num=0, expected="[0.]"📌 Parameters
params: start: 0 stop: 1 num: 0 expected: "[0.]" id: "0-1-0-expected6"📌 Setup phase
duration:
0.00039724912494421005outcome:
passed📌 Call phase
duration:
0.00040599796921014786outcome:
passed📌 Teardown phase
duration:
0.00023450329899787903outcome:
passed -
✅ Test 280
params:start=-2, stop=2, num=3, expected="[-2. -0.66666667 0.66666667 2. ]"📌 Parameters
params: start: -2 stop: 2 num: 3 expected: "[-2. -0.66666667 0.66666667 2. ]" id: "-2-2-3-expected7"📌 Setup phase
duration:
0.00037651415914297104outcome:
passed📌 Call phase
duration:
0.0004015890881419182outcome:
passed📌 Teardown phase
duration:
0.0002743741497397423outcome:
passed
↳ Function: test_nice_steps_centered
-
✅ Test 281
params:start=-2, stop=2, step=2, endpoint=true, expected="[-2. 0. 2.]"📌 Parameters
params: start: -2 stop: 2 step: 2 endpoint: true expected: "[-2. 0. 2.]" id: "-2-2-2-True-expected0"📌 Setup phase
duration:
0.0005933782085776329outcome:
passed📌 Call phase
duration:
0.0005601132288575172outcome:
passed📌 Teardown phase
duration:
0.00038257986307144165outcome:
passed -
✅ Test 282
params:start=0, stop=5, step=2, endpoint=true, expected="[0. 2. 4.]"📌 Parameters
params: start: 0 stop: 5 step: 2 endpoint: true expected: "[0. 2. 4.]" id: "0-5-2-True-expected1"📌 Setup phase
duration:
0.0006007328629493713outcome:
passed📌 Call phase
duration:
0.0005177855491638184outcome:
passed📌 Teardown phase
duration:
0.00035092420876026154outcome:
passed -
✅ Test 283
params:start=0, stop=5, step=2, endpoint=false, expected="[0. 2.]"📌 Parameters
params: start: 0 stop: 5 step: 2 endpoint: false expected: "[0. 2.]" id: "0-5-2-False-expected2"📌 Setup phase
duration:
0.0004874328151345253outcome:
passed📌 Call phase
duration:
0.00047099683433771133outcome:
passed📌 Teardown phase
duration:
0.000269303098320961outcome:
passed -
✅ Test 284
params:start=-1, stop=2, step=1.5, endpoint=true, expected="[-1.5 0. 1.5]"📌 Parameters
params: start: -1 stop: 2 step: 1.5 endpoint: true expected: "[-1.5 0. 1.5]" id: "-1-2-1.5-True-expected3"📌 Setup phase
duration:
0.0004177866503596306outcome:
passed📌 Call phase
duration:
0.00042567308992147446outcome:
passed📌 Teardown phase
duration:
0.00025983527302742004outcome:
passed -
✅ Test 285
params:start=-1, stop=2, step=-1.5, endpoint=true, expected="[ 1.5 0. -1.5]"📌 Parameters
params: start: -1 stop: 2 step: -1.5 endpoint: true expected: "[ 1.5 0. -1.5]" id: "-1-2--1.5-True-expected4"📌 Setup phase
duration:
0.0004311073571443558outcome:
passed📌 Call phase
duration:
0.00041917432099580765outcome:
passed📌 Teardown phase
duration:
0.0002751518040895462outcome:
passed -
✅ Test 286
params:start=5, stop=0, step=-2, endpoint=true, expected="[0. 2. 4.]"📌 Parameters
params: start: 5 stop: 0 step: -2 endpoint: true expected: "[0. 2. 4.]" id: "5-0--2-True-expected5"📌 Setup phase
duration:
0.0004217345267534256outcome:
passed📌 Call phase
duration:
0.000398353673517704outcome:
passed📌 Teardown phase
duration:
0.00024120043963193893outcome:
passed
↳ Function: test_nice_steps_left_aligned
-
✅ Test 287
params:start=0, stop=5, step=2, endpoint=true, expected="[0. 2. 4.]"📌 Parameters
params: start: 0 stop: 5 step: 2 endpoint: true expected: "[0. 2. 4.]" id: "0-5-2-True-expected0"📌 Setup phase
duration:
0.00042215175926685333outcome:
passed📌 Call phase
duration:
0.0004084184765815735outcome:
passed📌 Teardown phase
duration:
0.00025955773890018463outcome:
passed -
✅ Test 288
params:start=0, stop=5, step=2, endpoint=false, expected="[0. 2.]"📌 Parameters
params: start: 0 stop: 5 step: 2 endpoint: false expected: "[0. 2.]" id: "0-5-2-False-expected1"📌 Setup phase
duration:
0.000424996018409729outcome:
passed📌 Call phase
duration:
0.00038978271186351776outcome:
passed📌 Teardown phase
duration:
0.00026887841522693634outcome:
passed -
✅ Test 289
params:start=-1, stop=2, step=1.5, endpoint=true, expected="[-1. 0.5 2. ]"📌 Parameters
params: start: -1 stop: 2 step: 1.5 endpoint: true expected: "[-1. 0.5 2. ]" id: "-1-2-1.5-True-expected2"📌 Setup phase
duration:
0.00046374648809432983outcome:
passed📌 Call phase
duration:
0.0003945864737033844outcome:
passed📌 Teardown phase
duration:
0.00023872964084148407outcome:
passed -
✅ Test 290
params:start=-1, stop=2, step=1.5, endpoint=false, expected="[-1. 0.5]"📌 Parameters
params: start: -1 stop: 2 step: 1.5 endpoint: false expected: "[-1. 0.5]" id: "-1-2-1.5-False-expected3"📌 Setup phase
duration:
0.0004321001470088959outcome:
passed📌 Call phase
duration:
0.0003700871020555496outcome:
passed📌 Teardown phase
duration:
0.00025251414626836777outcome:
passed -
✅ Test 291
params:start=-2, stop=1, step=1.2, endpoint=true, expected="[-2. -0.8 0.4]"📌 Parameters
params: start: -2 stop: 1 step: 1.2 endpoint: true expected: "[-2. -0.8 0.4]" id: "-2-1-1.2-True-expected4"📌 Setup phase
duration:
0.0004339981824159622outcome:
passed📌 Call phase
duration:
0.00037133507430553436outcome:
passed📌 Teardown phase
duration:
0.0002555977553129196outcome:
passed -
✅ Test 292
params:start=5, stop=0, step=-2, endpoint=true, expected="[0. 2. 4.]"📌 Parameters
params: start: 5 stop: 0 step: -2 endpoint: true expected: "[0. 2. 4.]" id: "5-0--2-True-expected5"📌 Setup phase
duration:
0.0004241820424795151outcome:
passed📌 Call phase
duration:
0.00039789360016584396outcome:
passed📌 Teardown phase
duration:
0.0002683708444237709outcome:
passed -
✅ Test 293
params:start=5, stop=0, step=-2, endpoint=false, expected="[0. 2.]"📌 Parameters
params: start: 5 stop: 0 step: -2 endpoint: false expected: "[0. 2.]" id: "5-0--2-False-expected6"📌 Setup phase
duration:
0.0004307189956307411outcome:
passed📌 Call phase
duration:
0.00037881918251514435outcome:
passed📌 Teardown phase
duration:
0.0002487991005182266outcome:
passed
↳ Function: test_nice_steps_right_aligned
-
✅ Test 294
params:start=0, stop=5, step=2, endpoint=true, expected="[1. 3. 5.]"📌 Parameters
params: start: 0 stop: 5 step: 2 endpoint: true expected: "[1. 3. 5.]" id: "0-5-2-True-expected0"📌 Setup phase
duration:
0.0004385625943541527outcome:
passed📌 Call phase
duration:
0.00044136960059404373outcome:
passed📌 Teardown phase
duration:
0.00026370491832494736outcome:
passed -
✅ Test 295
params:start=0, stop=5, step=2, endpoint=false, expected="[3. 5.]"📌 Parameters
params: start: 0 stop: 5 step: 2 endpoint: false expected: "[3. 5.]" id: "0-5-2-False-expected1"📌 Setup phase
duration:
0.00043698959052562714outcome:
passed📌 Call phase
duration:
0.0003872867673635483outcome:
passed📌 Teardown phase
duration:
0.0002544010058045387outcome:
passed -
✅ Test 296
params:start=-1, stop=2, step=1.5, endpoint=true, expected="[-1. 0.5 2. ]"📌 Parameters
params: start: -1 stop: 2 step: 1.5 endpoint: true expected: "[-1. 0.5 2. ]" id: "-1-2-1.5-True-expected2"📌 Setup phase
duration:
0.0004124445840716362outcome:
passed📌 Call phase
duration:
0.0003695255145430565outcome:
passed📌 Teardown phase
duration:
0.0002658432349562645outcome:
passed -
✅ Test 297
params:start=-1, stop=2, step=1.5, endpoint=false, expected="[0.5 2. ]"📌 Parameters
params: start: -1 stop: 2 step: 1.5 endpoint: false expected: "[0.5 2. ]" id: "-1-2-1.5-False-expected3"📌 Setup phase
duration:
0.0004236968234181404outcome:
passed📌 Call phase
duration:
0.00037984922528266907outcome:
passed📌 Teardown phase
duration:
0.0002593034878373146outcome:
passed -
✅ Test 298
params:start=5, stop=0, step=-2, endpoint=true, expected="[1. 3. 5.]"📌 Parameters
params: start: 5 stop: 0 step: -2 endpoint: true expected: "[1. 3. 5.]" id: "5-0--2-True-expected4"📌 Setup phase
duration:
0.000402313657104969outcome:
passed📌 Call phase
duration:
0.00038065575063228607outcome:
passed📌 Teardown phase
duration:
0.0002537136897444725outcome:
passed -
✅ Test 299
params:start=5, stop=0, step=-2, endpoint=false, expected="[3. 5.]"📌 Parameters
params: start: 5 stop: 0 step: -2 endpoint: false expected: "[3. 5.]" id: "5-0--2-False-expected5"📌 Setup phase
duration:
0.0004197563976049423outcome:
passed📌 Call phase
duration:
0.0018646437674760818outcome:
passed📌 Teardown phase
duration:
0.0002585267648100853outcome:
passed -
✅ Test 300
params:start=-3, stop=3, step=2, endpoint=true, expected="[-3. -1. 1. 3.]"📌 Parameters
params: start: -3 stop: 3 step: 2 endpoint: true expected: "[-3. -1. 1. 3.]" id: "-3-3-2-True-expected6"📌 Setup phase
duration:
0.0004381230100989342outcome:
passed📌 Call phase
duration:
0.0003852071240544319outcome:
passed📌 Teardown phase
duration:
0.0002599824219942093outcome:
passed
↳ Function: test_within_scalar
-
✅ Test 301
params:val=5, vmin=0, vmax=10, expected=true📌 Parameters
params: val: 5 vmin: 0 vmax: 10 expected: true id: "5-0-10-True"📌 Setup phase
duration:
0.0004106862470507622outcome:
passed📌 Call phase
duration:
0.0001834547147154808outcome:
passed📌 Teardown phase
duration:
0.00020443182438611984outcome:
passed -
✅ Test 302
params:val=5, vmin=6, vmax=10, expected=false📌 Parameters
params: val: 5 vmin: 6 vmax: 10 expected: false id: "5-6-10-False"📌 Setup phase
duration:
0.0003525400534272194outcome:
passed📌 Call phase
duration:
0.00018087215721607208outcome:
passed📌 Teardown phase
duration:
0.0002062767744064331outcome:
passed -
✅ Test 303
params:val=5, vmin=null, vmax=10, expected=true📌 Parameters
params: val: 5 vmin: null vmax: 10 expected: true id: "5-None-10-True"📌 Setup phase
duration:
0.00033910199999809265outcome:
passed📌 Call phase
duration:
0.00017023272812366486outcome:
passed📌 Teardown phase
duration:
0.0002091517671942711outcome:
passed -
✅ Test 304
params:val=5, vmin=0, vmax=null, expected=true📌 Parameters
params: val: 5 vmin: 0 vmax: null expected: true id: "5-0-None-True"📌 Setup phase
duration:
0.00035586487501859665outcome:
passed📌 Call phase
duration:
0.00017153378576040268outcome:
passed📌 Teardown phase
duration:
0.00021933205425739288outcome:
passed -
✅ Test 305
params:val=5, vmin=null, vmax=null, expected=true📌 Parameters
params: val: 5 vmin: null vmax: null expected: true id: "5-None-None-True"📌 Setup phase
duration:
0.0003578104078769684outcome:
passed📌 Call phase
duration:
0.0001747477799654007outcome:
passed📌 Teardown phase
duration:
0.00020865071564912796outcome:
passed
↳ Function: test_within_fraction
-
✅ Test 306
params:data=[1, 2, 3, 4, 5], vmin=2, vmax=5, expected=0.6📌 Parameters
params: data: [1, 2, 3, 4, 5] vmin: 2 vmax: 5 expected: 0.6 id: "data0-2-5-0.6"📌 Setup phase
duration:
0.00036248471587896347outcome:
passed📌 Call phase
duration:
0.0004030410200357437outcome:
passed📌 Teardown phase
duration:
0.0002380162477493286outcome:
passed -
✅ Test 307
params:data=[10, 20, 30], vmin=5, vmax=25, expected=0.6666666666666666📌 Parameters
params: data: [10, 20, 30] vmin: 5 vmax: 25 expected: 0.6666666666666666 id: "data1-5-25-0.6666666666666666"📌 Setup phase
duration:
0.00037537049502134323outcome:
passed📌 Call phase
duration:
0.0003205416724085808outcome:
passed📌 Teardown phase
duration:
0.00022385921329259872outcome:
passed -
✅ Test 308
params:data=[1, 2, 3], vmin=null, vmax=2, expected=0.3333333333333333📌 Parameters
params: data: [1, 2, 3] vmin: null vmax: 2 expected: 0.3333333333333333 id: "data2-None-2-0.3333333333333333"📌 Setup phase
duration:
0.0003708368167281151outcome:
passed📌 Call phase
duration:
0.0002770358696579933outcome:
passed📌 Teardown phase
duration:
0.00020963605493307114outcome:
passed -
✅ Test 309
params:data=[], vmin=0, vmax=1, expected=0📌 Parameters
params: data: [] vmin: 0 vmax: 1 expected: 0 id: "data3-0-1-0"📌 Setup phase
duration:
0.00037200096994638443outcome:
passed📌 Call phase
duration:
0.0002808691933751106outcome:
passed📌 Teardown phase
duration:
0.000209868885576725outcome:
passed
↳ Function: test_fraction_to_percentage
-
✅ Test 310
params:fraction=0.456, ndigits=1, expected=45.6📌 Parameters
params: fraction: 0.456 ndigits: 1 expected: 45.6 id: "0.456-1-45.6"📌 Setup phase
duration:
0.0003114212304353714outcome:
passed📌 Call phase
duration:
0.00018146540969610214outcome:
passed📌 Teardown phase
duration:
0.00020534545183181763outcome:
passed -
✅ Test 311
params:fraction=0.12345, ndigits=2, expected=12.35📌 Parameters
params: fraction: 0.12345 ndigits: 2 expected: 12.35 id: "0.12345-2-12.35"📌 Setup phase
duration:
0.0003132820129394531outcome:
passed📌 Call phase
duration:
0.00018650293350219727outcome:
passed📌 Teardown phase
duration:
0.00018549803644418716outcome:
passed -
✅ Test 312
params:fraction=0.9999, ndigits=0, expected=100.0📌 Parameters
params: fraction: 0.9999 ndigits: 0 expected: 100.0 id: "0.9999-0-100.0"📌 Setup phase
duration:
0.00033454224467277527outcome:
passed📌 Call phase
duration:
0.0001777559518814087outcome:
passed📌 Teardown phase
duration:
0.0001885863021016121outcome:
passed
↳ Function: test_get_dtype
-
✅ Test 313
params:val="[1 2 3]", expected="<class 'numpy.ndarray'>"📌 Parameters
params: val: "[1 2 3]" expected: "<class 'numpy.ndarray'>" id: "val0-ndarray"📌 Setup phase
duration:
0.00025253091007471085outcome:
passed📌 Call phase
duration:
0.0001858016476035118outcome:
passed📌 Teardown phase
duration:
0.0002001700922846794outcome:
passed -
✅ Test 314
params:val=[1, 2, 3], expected="<class 'list'>"📌 Parameters
params: val: [1, 2, 3] expected: "<class 'list'>" id: "val1-list"📌 Setup phase
duration:
0.0002783415839076042outcome:
passed📌 Call phase
duration:
0.0001838989555835724outcome:
passed📌 Teardown phase
duration:
0.00017716549336910248outcome:
passed -
✅ Test 315
params:val=3.14, expected="<class 'float'>"📌 Parameters
params: val: 3.14 expected: "<class 'float'>" id: "3.14-float"📌 Setup phase
duration:
0.000271395780146122outcome:
passed📌 Call phase
duration:
0.00017073936760425568outcome:
passed📌 Teardown phase
duration:
0.0001826053485274315outcome:
passed
↳ Function: test_get_shape
-
✅ Test 316
params:val="[[1 2]\n [3 4]]", expected=[2, 2]📌 Parameters
params: val: "[[1 2]\n [3 4]]" expected: [2, 2] id: "val0-expected0"📌 Setup phase
duration:
0.0002692556008696556outcome:
passed📌 Call phase
duration:
0.00017494335770606995outcome:
passed📌 Teardown phase
duration:
0.00019778776913881302outcome:
passed -
✅ Test 317
params:val=[1, 2, 3], expected=[]📌 Parameters
params: val: [1, 2, 3] expected: [] id: "val1-expected1"📌 Setup phase
duration:
0.00027278903871774673outcome:
passed📌 Call phase
duration:
0.0001749591901898384outcome:
passed📌 Teardown phase
duration:
0.0001697540283203125outcome:
passed -
✅ Test 318
params:val=42, expected=[]📌 Parameters
params: val: 42 expected: [] id: "42-expected2"📌 Setup phase
duration:
0.00027760397642850876outcome:
passed📌 Call phase
duration:
0.00017395149916410446outcome:
passed📌 Teardown phase
duration:
0.00017197243869304657outcome:
passed
↳ Function: test_is_array
-
✅ Test 319
params:val="[1 2 3]", expected=true📌 Parameters
params: val: "[1 2 3]" expected: true id: "val0-True"📌 Setup phase
duration:
0.00025468599051237106outcome:
passed📌 Call phase
duration:
0.00017022527754306793outcome:
passed📌 Teardown phase
duration:
0.00020106974989175797outcome:
passed -
✅ Test 320
params:val=[1, 2, 3], expected=false📌 Parameters
params: val: [1, 2, 3] expected: false id: "val1-False"📌 Setup phase
duration:
0.00028147269040346146outcome:
passed📌 Call phase
duration:
0.00017968565225601196outcome:
passed📌 Teardown phase
duration:
0.00017010141164064407outcome:
passed -
✅ Test 321
params:val=42, expected=false📌 Parameters
params: val: 42 expected: false id: "42-False"📌 Setup phase
duration:
0.0002567647024989128outcome:
passed📌 Call phase
duration:
0.0001747608184814453outcome:
passed📌 Teardown phase
duration:
0.00019635632634162903outcome:
passed
-
-
📄 test_utils_path.py
↳ Function: test_can_create_all_files_user_says_yes
-
✅ Test 322
📌 Setup phase
duration:
0.00017453357577323914outcome:
passed📌 Call phase
duration:
0.0012280279770493507outcome:
passedstdout:
Deleting "/tmp/tmpkfpcfvcg/a.txt". Deleting "/tmp/tmpkfpcfvcg/c.txt".📌 Teardown phase
duration:
0.00017095450311899185outcome:
passed
↳ Function: test_can_create_all_files_user_says_no
-
✅ Test 323
📌 Setup phase
duration:
0.00015701260417699814outcome:
passed📌 Call phase
duration:
0.0005309190601110458outcome:
passed📌 Teardown phase
duration:
0.00015351828187704086outcome:
passed
↳ Function: test_make_missing_dir_creates_folder
-
✅ Test 324
📌 Setup phase
duration:
0.00016217585653066635outcome:
passed📌 Call phase
duration:
0.0010163607075810432outcome:
passedstdout:
Directory "/tmp/tmp8v4se3q5/nested/dir" does not exist, creating it...📌 Teardown phase
duration:
0.0001624850556254387outcome:
passed
↳ Function: test_glob_files_returns_matching_files_only
-
✅ Test 325
📌 Setup phase
duration:
0.0001775706186890602outcome:
passed📌 Call phase
duration:
0.0010389573872089386outcome:
passed📌 Teardown phase
duration:
0.000155644491314888outcome:
passed
↳ Function: test_filter_files_excludes_directories
-
✅ Test 326
📌 Setup phase
duration:
0.0001604640856385231outcome:
passed📌 Call phase
duration:
0.0006553782150149345outcome:
passed📌 Teardown phase
duration:
0.00015634018927812576outcome:
passed
-
-
📄 test_utils_picklio.py
↳ Function: test_pickle_and_unpickle
-
✅ Test 327
params:test_obj={"a": 1, "b": [2, 3], "c": {"world": "ok"}}📌 Parameters
params: test_obj: {"a": 1, "b": [2, 3], "c": {"world": "ok"}} id: "test_obj0"📌 Setup phase
duration:
0.0008650142699480057outcome:
passed📌 Call phase
duration:
0.0003988901153206825outcome:
passed📌 Teardown phase
duration:
0.00020120106637477875outcome:
passed -
✅ Test 328
params:test_obj=[1, 2, 3, 4, 5]📌 Parameters
params: test_obj: [1, 2, 3, 4, 5] id: "test_obj1"📌 Setup phase
duration:
0.0006092237308621407outcome:
passed📌 Call phase
duration:
0.00033480022102594376outcome:
passed📌 Teardown phase
duration:
0.00020076893270015717outcome:
passed -
✅ Test 329
params:test_obj="simple string"📌 Parameters
params: test_obj: "simple string" id: "simple string"📌 Setup phase
duration:
0.0005530864000320435outcome:
passed📌 Call phase
duration:
0.0003824019804596901outcome:
passed📌 Teardown phase
duration:
0.00019875634461641312outcome:
passed -
✅ Test 330
params:test_obj=42📌 Parameters
params: test_obj: 42 id: "42"📌 Setup phase
duration:
0.0005816267803311348outcome:
passed📌 Call phase
duration:
0.0003353152424097061outcome:
passed📌 Teardown phase
duration:
0.00019740406423807144outcome:
passed -
✅ Test 331
params:test_obj=3.14159📌 Parameters
params: test_obj: 3.14159 id: "3.14159"📌 Setup phase
duration:
0.0006191190332174301outcome:
passed📌 Call phase
duration:
0.00031438563019037247outcome:
passed📌 Teardown phase
duration:
0.00019623897969722748outcome:
passed -
✅ Test 332
params:test_obj=[true, false, null]📌 Parameters
params: test_obj: [true, false, null] id: "test_obj5"📌 Setup phase
duration:
0.0005796728655695915outcome:
passed📌 Call phase
duration:
0.00031414255499839783outcome:
passed📌 Teardown phase
duration:
0.00021717045456171036outcome:
passed -
✅ Test 333
params:test_obj={"complex": [{"list": [1, 2]}, {"dict": {"x": 10}}]}📌 Parameters
params: test_obj: {"complex": [{"list": [1, 2]}, {"dict": {"x": 10}}]} id: "test_obj6"📌 Setup phase
duration:
0.0005678460001945496outcome:
passed📌 Call phase
duration:
0.00032824091613292694outcome:
passed📌 Teardown phase
duration:
0.0002095857635140419outcome:
passed
-
-
📄 test_utils_printing.py
↳ Function: test_maxlen_valid
-
✅ Test 334
params:seq=["a", "abc", ""], expected=3📌 Parameters
params: seq: ["a", "abc", ""] expected: 3 id: "seq0-3"📌 Setup phase
duration:
0.0003203451633453369outcome:
passed📌 Call phase
duration:
0.0002590520307421684outcome:
passed📌 Teardown phase
duration:
0.00018551107496023178outcome:
passed -
✅ Test 335
params:seq=[], expected=0📌 Parameters
params: seq: [] expected: 0 id: "seq1-0"📌 Setup phase
duration:
0.0003674086183309555outcome:
passed📌 Call phase
duration:
0.00017923489212989807outcome:
passed📌 Teardown phase
duration:
0.00017549283802509308outcome:
passed -
✅ Test 336
params:seq=[[1, 2], [3], [4, 5, 6]], expected=3📌 Parameters
params: seq: [[1, 2], [3], [4, 5, 6]] expected: 3 id: "seq2-3"📌 Setup phase
duration:
0.0002836957573890686outcome:
passed📌 Call phase
duration:
0.00018384214490652084outcome:
passed📌 Teardown phase
duration:
0.0001772390678524971outcome:
passed -
✅ Test 337
params:seq=[{"a": 2, "b": 3}, {}, {"c": 4}], expected=2📌 Parameters
params: seq: [{"a": 2, "b": 3}, {}, {"c": 4}] expected: 2 id: "seq3-2"📌 Setup phase
duration:
0.00025757867842912674outcome:
passed📌 Call phase
duration:
0.00018269754946231842outcome:
passed📌 Teardown phase
duration:
0.0001888703554868698outcome:
passed
↳ Function: test_strlen
-
✅ Test 338
params:value=42, expected=2📌 Parameters
params: value: 42 expected: 2 id: "42-2"📌 Setup phase
duration:
0.00029626116156578064outcome:
passed📌 Call phase
duration:
0.00018758699297904968outcome:
passed📌 Teardown phase
duration:
0.00017274636775255203outcome:
passed -
✅ Test 339
params:value="hello", expected=5📌 Parameters
params: value: "hello" expected: 5 id: "hello-5"📌 Setup phase
duration:
0.00027517136186361313outcome:
passed📌 Call phase
duration:
0.00018180813640356064outcome:
passed📌 Teardown phase
duration:
0.0001864386722445488outcome:
passed -
✅ Test 340
params:value=false, expected=5📌 Parameters
params: value: false expected: 5 id: "False-5"📌 Setup phase
duration:
0.0002603987231850624outcome:
passed📌 Call phase
duration:
0.00017440039664506912outcome:
passed📌 Teardown phase
duration:
0.00017724093049764633outcome:
passed -
✅ Test 341
params:value=null, expected=4📌 Parameters
params: value: null expected: 4 id: "None-4"📌 Setup phase
duration:
0.00024852529168128967outcome:
passed📌 Call phase
duration:
0.00017084740102291107outcome:
passed📌 Teardown phase
duration:
0.000179169699549675outcome:
passed -
✅ Test 342
params:value=[1, 2, 3], expected=9📌 Parameters
params: value: [1, 2, 3] expected: 9 id: "value4-9"📌 Setup phase
duration:
0.0002889735624194145outcome:
passed📌 Call phase
duration:
0.00018672272562980652outcome:
passed📌 Teardown phase
duration:
0.00017266720533370972outcome:
passed -
✅ Test 343
params:value={"a": 1}, expected=8📌 Parameters
params: value: {"a": 1} expected: 8 id: "value5-8"📌 Setup phase
duration:
0.00026999134570360184outcome:
passed📌 Call phase
duration:
0.00017464719712734222outcome:
passed📌 Teardown phase
duration:
0.00018274225294589996outcome:
passed -
✅ Test 344
params:value=[1, 2], expected=6📌 Parameters
params: value: [1, 2] expected: 6 id: "value6-6"📌 Setup phase
duration:
0.00027006957679986954outcome:
passed📌 Call phase
duration:
0.00018530525267124176outcome:
passed📌 Teardown phase
duration:
0.0001710960641503334outcome:
passed -
✅ Test 345
params:value="", expected=0📌 Parameters
params: value: "" expected: 0 id: "-0"📌 Setup phase
duration:
0.0002697417512536049outcome:
passed📌 Call phase
duration:
0.00017152540385723114outcome:
passed📌 Teardown phase
duration:
0.00017042085528373718outcome:
passed -
✅ Test 346
params:value="this is a phrase", expected=16📌 Parameters
params: value: "this is a phrase" expected: 16 id: "this is a phrase-16"📌 Setup phase
duration:
0.00029144249856472015outcome:
passed📌 Call phase
duration:
0.00016947835683822632outcome:
passed📌 Teardown phase
duration:
0.000196799635887146outcome:
passed
↳ Function: test_maxstrlen
-
✅ Test 347
params:seq=[1, true, 3.1415], expected=6📌 Parameters
params: seq: [1, true, 3.1415] expected: 6 id: "seq0-6"📌 Setup phase
duration:
0.0002789953723549843outcome:
passed📌 Call phase
duration:
0.00018174853175878525outcome:
passed📌 Teardown phase
duration:
0.0001747962087392807outcome:
passed -
✅ Test 348
params:seq=["aa", "bbb", "c"], expected=3📌 Parameters
params: seq: ["aa", "bbb", "c"] expected: 3 id: "seq1-3"📌 Setup phase
duration:
0.0002823229879140854outcome:
passed📌 Call phase
duration:
0.0001987852156162262outcome:
passed📌 Teardown phase
duration:
0.00017598643898963928outcome:
passed -
✅ Test 349
params:seq=[[1, 2], [], [1, 2, 3]], expected=9📌 Parameters
params: seq: [[1, 2], [], [1, 2, 3]] expected: 9 id: "seq2-9"📌 Setup phase
duration:
0.00026561319828033447outcome:
passed📌 Call phase
duration:
0.00018343981355428696outcome:
passed📌 Teardown phase
duration:
0.00027695856988430023outcome:
passed -
✅ Test 350
params:seq=[{"a": 1}, {}, {"a": 1, "b": 2}], expected=16📌 Parameters
params: seq: [{"a": 1}, {}, {"a": 1, "b": 2}] expected: 16 id: "seq3-16"📌 Setup phase
duration:
0.0002705501392483711outcome:
passed📌 Call phase
duration:
0.00018471572548151016outcome:
passed📌 Teardown phase
duration:
0.00018003955483436584outcome:
passed -
✅ Test 351
params:seq=[null, false, 12345], expected=5📌 Parameters
params: seq: [null, false, 12345] expected: 5 id: "seq4-5"📌 Setup phase
duration:
0.00027414504438638687outcome:
passed📌 Call phase
duration:
0.00019351765513420105outcome:
passed📌 Teardown phase
duration:
0.00019446201622486115outcome:
passed
↳ Function: test_transpose_matrix
-
✅ Test 352
params:data=[[1, 2], [3, 4]], expected=[[1, 3], [2, 4]]📌 Parameters
params: data: [[1, 2], [3, 4]] expected: [[1, 3], [2, 4]] id: "data0-expected0"📌 Setup phase
duration:
0.0002713007852435112outcome:
passed📌 Call phase
duration:
0.00017231609672307968outcome:
passed📌 Teardown phase
duration:
0.00016874726861715317outcome:
passed -
✅ Test 353
params:data=[["a", "b"], ["c", "d"]], expected=[["a", "c"], ["b", "d"]]📌 Parameters
params: data: [["a", "b"], ["c", "d"]] expected: [["a", "c"], ["b", "d"]] id: "data1-expected1"📌 Setup phase
duration:
0.00027376599609851837outcome:
passed📌 Call phase
duration:
0.00018086284399032593outcome:
passed📌 Teardown phase
duration:
0.00018711574375629425outcome:
passed -
✅ Test 354
params:data=[[{"x": 1}, {"y": 2}], [{"x": 3}, {"y": 4}]], expected=[[{"x": 1}, {"x": 3}], [{"y": 2}, {"y": 4}]]📌 Parameters
params: data: [[{"x": 1}, {"y": 2}], [{"x": 3}, {"y": 4}]] expected: [[{"x": 1}, {"x": 3}], [{"y": 2}, {"y": 4}]] id: "data2-expected2"📌 Setup phase
duration:
0.00024460069835186005outcome:
passed📌 Call phase
duration:
0.00016893167048692703outcome:
passed📌 Teardown phase
duration:
0.00018703192472457886outcome:
passed
↳ Function: test_prepend
-
✅ Test 355
params:initial=[1, 2, 3], prepend=1, expected=[1, 2, 3]📌 Parameters
params: initial: [1, 2, 3] prepend: 1 expected: [1, 2, 3] id: "initial0-1-expected0"📌 Setup phase
duration:
0.00030097272247076035outcome:
passed📌 Call phase
duration:
0.00017294101417064667outcome:
passed📌 Teardown phase
duration:
0.0001854877918958664outcome:
passed -
✅ Test 356
params:initial=["a", "b", "c"], prepend="a", expected=["a", "b", "c"]📌 Parameters
params: initial: ["a", "b", "c"] prepend: "a" expected: ["a", "b", "c"] id: "initial1-a-expected1"📌 Setup phase
duration:
0.00033581536263227463outcome:
passed📌 Call phase
duration:
0.00017182901501655579outcome:
passed📌 Teardown phase
duration:
0.00018507428467273712outcome:
passed -
✅ Test 357
params:initial=[{"a": 1}, {"b": 2}], prepend={"a": 1}, expected=[{"a": 1}, {"b": 2}]📌 Parameters
params: initial: [{"a": 1}, {"b": 2}] prepend: {"a": 1} expected: [{"a": 1}, {"b": 2}] id: "initial2-prepend2-expected2"📌 Setup phase
duration:
0.0002977102994918823outcome:
passed📌 Call phase
duration:
0.00017235614359378815outcome:
passed📌 Teardown phase
duration:
0.00019088387489318848outcome:
passed -
✅ Test 358
params:initial=[[1], [2], [3]], prepend=[1], expected=[[1], [2], [3]]📌 Parameters
params: initial: [[1], [2], [3]] prepend: [1] expected: [[1], [2], [3]] id: "initial3-prepend3-expected3"📌 Setup phase
duration:
0.0002958625555038452outcome:
passed📌 Call phase
duration:
0.00018050428479909897outcome:
passed📌 Teardown phase
duration:
0.00019044522196054459outcome:
passed
↳ Function: test_fmt_table_line
-
✅ Test 359
params:entries=["a", "bbb"], widths=[3, 5], expected=" a bbb"📌 Parameters
params: entries: ["a", "bbb"] widths: [3, 5] expected: " a bbb" id: "entries0-widths0- a bbb"📌 Setup phase
duration:
0.00035476312041282654outcome:
passed📌 Call phase
duration:
0.00018682796508073807outcome:
passed📌 Teardown phase
duration:
0.00018909666687250137outcome:
passed -
✅ Test 360
params:entries=[1, 2], widths=[2, 2], expected=" 1 2"📌 Parameters
params: entries: [1, 2] widths: [2, 2] expected: " 1 2" id: "entries1-widths1- 1 2"📌 Setup phase
duration:
0.0003060847520828247outcome:
passed📌 Call phase
duration:
0.00018219929188489914outcome:
passed📌 Teardown phase
duration:
0.00019471719861030579outcome:
passed -
✅ Test 361
params:entries=["long", "val"], widths=[6, 4], expected=" long val"📌 Parameters
params: entries: ["long", "val"] widths: [6, 4] expected: " long val" id: "entries2-widths2- long val"📌 Setup phase
duration:
0.0003224629908800125outcome:
passed📌 Call phase
duration:
0.00019785668700933456outcome:
passed📌 Teardown phase
duration:
0.00019418727606534958outcome:
passed -
✅ Test 362
params:entries=[true, false], widths=[5, 6], expected=" True False"📌 Parameters
params: entries: [true, false] widths: [5, 6] expected: " True False" id: "entries3-widths3- True False"📌 Setup phase
duration:
0.00033463723957538605outcome:
passed📌 Call phase
duration:
0.00017440132796764374outcome:
passed📌 Teardown phase
duration:
0.00019617192447185516outcome:
passed -
✅ Test 363
params:entries=[123, 4567], widths=[5, 5], expected=" 123 4567"📌 Parameters
params: entries: [123, 4567] widths: [5, 5] expected: " 123 4567" id: "entries4-widths4- 123 4567"📌 Setup phase
duration:
0.0003326311707496643outcome:
passed📌 Call phase
duration:
0.00017647817730903625outcome:
passed📌 Teardown phase
duration:
0.00018769968301057816outcome:
passed -
✅ Test 364
params:entries=["text with space", "end"], widths=[16, 5], expected=" text with space end"📌 Parameters
params: entries: ["text with space", "end"] widths: [16, 5] expected: " text with space end" id: "entries5-widths5- text with space end"📌 Setup phase
duration:
0.00030463654547929764outcome:
passed📌 Call phase
duration:
0.00018239952623844147outcome:
passed📌 Teardown phase
duration:
0.00018906686455011368outcome:
passed -
✅ Test 365
params:entries=[{"a": 1}, {"b": 2}], widths=[10, 10], expected=" {'a': 1} {'b': 2}"📌 Parameters
params: entries: [{"a": 1}, {"b": 2}] widths: [10, 10] expected: " {'a': 1} {'b': 2}" id: "entries6-widths6- {'a': 1} {'b': 2}"📌 Setup phase
duration:
0.0003060949966311455outcome:
passed📌 Call phase
duration:
0.0001737680286169052outcome:
passed📌 Teardown phase
duration:
0.0001933397725224495outcome:
passed -
✅ Test 366
params:entries=[[1, 2], [3, 4]], widths=[10, 10], expected=" [1, 2] [3, 4]"📌 Parameters
params: entries: [[1, 2], [3, 4]] widths: [10, 10] expected: " [1, 2] [3, 4]" id: "entries7-widths7- [1, 2] [3, 4]"📌 Setup phase
duration:
0.0002999827265739441outcome:
passed📌 Call phase
duration:
0.00017520692199468613outcome:
passed📌 Teardown phase
duration:
0.00020169466733932495outcome:
passed
↳ Function: test_fmt_label_sep
-
✅ Test 367
params:widths=[3, 4], line="-", expected="--- ----"📌 Parameters
params: widths: [3, 4] line: "-" expected: "--- ----" id: "widths0------ ----"📌 Setup phase
duration:
0.0003537740558385849outcome:
passed📌 Call phase
duration:
0.00019881408661603928outcome:
passed📌 Teardown phase
duration:
0.00018541794270277023outcome:
passed -
✅ Test 368
params:widths=[2, 3], line="=", expected="== ==="📌 Parameters
params: widths: [2, 3] line: "=" expected: "== ===" id: "widths1-=-== ==="📌 Setup phase
duration:
0.00032005738466978073outcome:
passed📌 Call phase
duration:
0.00017500203102827072outcome:
passed📌 Teardown phase
duration:
0.0001868968829512596outcome:
passed -
✅ Test 369
params:widths=[5, 2], line="*", expected="***** **"📌 Parameters
params: widths: [5, 2] line: "*" expected: "***** **" id: "widths2-*-***** **"📌 Setup phase
duration:
0.0002960348501801491outcome:
passed📌 Call phase
duration:
0.00017657410353422165outcome:
passed📌 Teardown phase
duration:
0.00021013803780078888outcome:
passed
↳ Function: test_printable_dict_with_header
-
✅ Test 370
params:d={"medium": true, "very_long_key": 3.14, "x": 1}, header="HeaderTest", expected_lines=["HeaderTest:", "-----------", "medium: True", "very_long_key: 3.14", "x: 1", ""]📌 Parameters
params: d: {"medium": true, "very_long_key": 3.14, "x": 1} header: "HeaderTest" expected_lines: ["HeaderTest:", "-----------", "medium: True", "very_long_key: 3.14", "x: 1", ""] id: "d0-HeaderTest-expected_lines0"📌 Setup phase
duration:
0.0003002965822815895outcome:
passed📌 Call phase
duration:
0.00028029270470142365outcome:
passed📌 Teardown phase
duration:
0.00019402150064706802outcome:
passed
↳ Function: test_printable_dict_of_dicts
-
✅ Test 371
📌 Setup phase
duration:
0.00015461351722478867outcome:
passed📌 Call phase
duration:
0.00027986057102680206outcome:
passed📌 Teardown phase
duration:
0.00013998430222272873outcome:
passed
↳ Function: test_printable_table
-
✅ Test 372
params:data=[["X1", true, 0.1234, {"meta": "ok"}], ["AnotherSample", false, 98765.4321, {"meta": [1, 2, 3]}], ["Z", null, 0.0, {"meta": {"nested_key": 42}}]], labels=["ID", "✓ Success?", "SuperPrecisionValue", "Result Metadata"], expected="A: ID\nB: ✓ Success?\nC: SuperPrecisionValue\nD: Result Metadata\n\n# A B C D\n- ------------- ----- ---------- ----------------------------\n0 X1 True 0.1234 {'meta': 'ok'}\n1 AnotherSample False 98765.4321 {'meta': [1, 2, 3]}\n2 Z None 0.0 {'meta': {'nested_key': 42}}"📌 Parameters
params: data: [["X1", true, 0.1234, {"meta": "ok"}], ["AnotherSample", false, 98765.4321, {"meta": [1, 2, 3]}], ["Z", null, 0.0, {"meta": {"nested_key": 42}}]] labels: ["ID", "✓ Success?", "SuperPrecisionValue", "Result Metadata"] expected: "A: ID\nB: ✓ Success?\nC: SuperPrecisionValue\nD: Result Metadata\n\n# A B C D\n- ------------- ----- ---------- ----------------------------\n0 X1 True 0.1234 {'meta': 'ok'}\n1 AnotherSample False 98765.4321 {'meta': [1, 2, 3]}\n2 Z None 0.0 {'meta': {'nested_key': 42}}" id: "data0-labels0-A: ID\\nB: \\u2713 Success?\\nC: SuperPrecisionValue\\nD: Result Metadata\\n\\n# A B C D\\n- ------------- ----- ---------- ----------------------------\\n0 X1 True 0.1234 {'meta': 'ok'}\\n1 AnotherSample False 98765.4321 {'meta': [1, 2, 3]}\\n2 Z None 0.0 {'meta': {'nested_key': 42}}"📌 Setup phase
duration:
0.0003267638385295868outcome:
passed📌 Call phase
duration:
0.000982058234512806outcome:
passedstdout:
"A: ID\nB: ✓ Success?\nC: SuperPrecisionValue\nD: Result Metadata\n\n# A B C D\n- ------------- ----- ---------- ----------------------------\n0 X1 True 0.1234 {'meta': 'ok'}\n1 AnotherSample False 98765.4321 {'meta': [1, 2, 3]}\n2 Z None 0.0 {'meta': {'nested_key': 42}}" "A: ID\nB: ✓ Success?\nC: SuperPrecisionValue\nD: Result Metadata\n\n# A B C D\n- ------------- ----- ---------- ----------------------------\n0 X1 True 0.1234 {'meta': 'ok'}\n1 AnotherSample False 98765.4321 {'meta': [1, 2, 3]}\n2 Z None 0.0 {'meta': {'nested_key': 42}}"📌 Teardown phase
duration:
0.00025968998670578003outcome:
passed
-
-
📄 test_utils_rangebar.py
↳ Function: test_full_progress_bar
-
✅ Test 373
📌 Setup phase
duration:
0.0003202706575393677outcome:
passed📌 Call phase
duration:
0.00040642358362674713outcome:
passed📌 Teardown phase
duration:
0.0002540266141295433outcome:
passed
↳ Function: test_half_progress_bar
-
✅ Test 374
📌 Setup phase
duration:
0.0003705807030200958outcome:
passed📌 Call phase
duration:
0.0003454536199569702outcome:
passed📌 Teardown phase
duration:
0.00022591929882764816outcome:
passed
↳ Function: test_zero_progress_bar
-
✅ Test 375
📌 Setup phase
duration:
0.00029395055025815964outcome:
passed📌 Call phase
duration:
0.0003053629770874977outcome:
passed📌 Teardown phase
duration:
0.0002141520380973816outcome:
passed
↳ Function: test_overflow_bar
-
✅ Test 376
📌 Setup phase
duration:
0.0002858564257621765outcome:
passed📌 Call phase
duration:
0.00030808988958597183outcome:
passed📌 Teardown phase
duration:
0.0001951279118657112outcome:
passed
↳ Function: test_underflow_bar
-
✅ Test 377
📌 Setup phase
duration:
0.0002870243042707443outcome:
passed📌 Call phase
duration:
0.0002776850014925003outcome:
passed📌 Teardown phase
duration:
0.00020379386842250824outcome:
passed
↳ Function: test_repr
-
✅ Test 378
📌 Setup phase
duration:
0.0001513538882136345outcome:
passed📌 Call phase
duration:
0.00019097141921520233outcome:
passed📌 Teardown phase
duration:
0.00014920905232429504outcome:
passed
↳ Function: test_each_value_separately
-
✅ Test 379
params:value=0, expected_bar_part=" "📌 Parameters
params: value: 0 expected_bar_part: " " id: "0- "📌 Setup phase
duration:
0.0003890320658683777outcome:
passed📌 Call phase
duration:
0.00029272958636283875outcome:
passed📌 Teardown phase
duration:
0.00023000966757535934outcome:
passed -
✅ Test 380
params:value=10, expected_bar_part="█ "📌 Parameters
params: value: 10 expected_bar_part: "█ " id: "10-\\u2588 "📌 Setup phase
duration:
0.00036978814750909805outcome:
passed📌 Call phase
duration:
0.00029746443033218384outcome:
passed📌 Teardown phase
duration:
0.00028030388057231903outcome:
passed -
✅ Test 381
params:value=25, expected_bar_part="██▌ "📌 Parameters
params: value: 25 expected_bar_part: "██▌ " id: "25-\\u2588\\u2588\\u258c "📌 Setup phase
duration:
0.00036825332790613174outcome:
passed📌 Call phase
duration:
0.0002859216183423996outcome:
passed📌 Teardown phase
duration:
0.00024910178035497665outcome:
passed -
✅ Test 382
params:value=27, expected_bar_part="██▊ "📌 Parameters
params: value: 27 expected_bar_part: "██▊ " id: "27-\\u2588\\u2588\\u258a "📌 Setup phase
duration:
0.0003663972020149231outcome:
passed📌 Call phase
duration:
0.0002859458327293396outcome:
passed📌 Teardown phase
duration:
0.00024406611919403076outcome:
passed -
✅ Test 383
params:value=49, expected_bar_part="████▉ "📌 Parameters
params: value: 49 expected_bar_part: "████▉ " id: "49-\\u2588\\u2588\\u2588\\u2588\\u2589 "📌 Setup phase
duration:
0.00037584640085697174outcome:
passed📌 Call phase
duration:
0.0002922341227531433outcome:
passed📌 Teardown phase
duration:
0.0002465220168232918outcome:
passed -
✅ Test 384
params:value=50, expected_bar_part="█████ "📌 Parameters
params: value: 50 expected_bar_part: "█████ " id: "50-\\u2588\\u2588\\u2588\\u2588\\u2588 "📌 Setup phase
duration:
0.0003832802176475525outcome:
passed📌 Call phase
duration:
0.00030003488063812256outcome:
passed📌 Teardown phase
duration:
0.00023533962666988373outcome:
passed -
✅ Test 385
params:value=51, expected_bar_part="█████▏ "📌 Parameters
params: value: 51 expected_bar_part: "█████▏ " id: "51-\\u2588\\u2588\\u2588\\u2588\\u2588\\u258f "📌 Setup phase
duration:
0.000398268923163414outcome:
passed📌 Call phase
duration:
0.00029988866299390793outcome:
passed📌 Teardown phase
duration:
0.0002472223713994026outcome:
passed -
✅ Test 386
params:value=73, expected_bar_part="███████▎ "📌 Parameters
params: value: 73 expected_bar_part: "███████▎ " id: "73-\\u2588\\u2588\\u2588\\u2588\\u2588\\u2588\\u2588\\u258e "📌 Setup phase
duration:
0.0003546224907040596outcome:
passed📌 Call phase
duration:
0.0002806512638926506outcome:
passed📌 Teardown phase
duration:
0.0002423711121082306outcome:
passed -
✅ Test 387
params:value=75, expected_bar_part="███████▌ "📌 Parameters
params: value: 75 expected_bar_part: "███████▌ " id: "75-\\u2588\\u2588\\u2588\\u2588\\u2588\\u2588\\u2588\\u258c "📌 Setup phase
duration:
0.0003513311967253685outcome:
passed📌 Call phase
duration:
0.0002853088080883026outcome:
passed📌 Teardown phase
duration:
0.0002509327605366707outcome:
passed -
✅ Test 388
params:value=90, expected_bar_part="█████████ "📌 Parameters
params: value: 90 expected_bar_part: "█████████ " id: "90-\\u2588\\u2588\\u2588\\u2588\\u2588\\u2588\\u2588\\u2588\\u2588 "📌 Setup phase
duration:
0.0003554420545697212outcome:
passed📌 Call phase
duration:
0.0002801269292831421outcome:
passed📌 Teardown phase
duration:
0.0002421373501420021outcome:
passed -
✅ Test 389
params:value=100, expected_bar_part="██████████"📌 Parameters
params: value: 100 expected_bar_part: "██████████" id: "100-\\u2588\\u2588\\u2588\\u2588\\u2588\\u2588\\u2588\\u2588\\u2588\\u2588"📌 Setup phase
duration:
0.0003617340698838234outcome:
passed📌 Call phase
duration:
0.0002820100635290146outcome:
passed📌 Teardown phase
duration:
0.0002457601949572563outcome:
passed
-
-
📄 test_utils_readable.py
↳ Function: test_readable_seconds
-
✅ Test 390
params:seconds=59.4, expected="59 seconds"📌 Parameters
params: seconds: 59.4 expected: "59 seconds" id: "59.4-59 seconds"📌 Setup phase
duration:
0.0002953214570879936outcome:
passed📌 Call phase
duration:
0.00020832009613513947outcome:
passed📌 Teardown phase
duration:
0.00018247868865728378outcome:
passed -
✅ Test 391
params:seconds=59.9, expected="60 seconds"📌 Parameters
params: seconds: 59.9 expected: "60 seconds" id: "59.9-60 seconds"📌 Setup phase
duration:
0.00026880018413066864outcome:
passed📌 Call phase
duration:
0.00017998740077018738outcome:
passed📌 Teardown phase
duration:
0.00018171779811382294outcome:
passed -
✅ Test 392
params:seconds=119.9, expected="120 seconds"📌 Parameters
params: seconds: 119.9 expected: "120 seconds" id: "119.9-120 seconds"📌 Setup phase
duration:
0.0002732789143919945outcome:
passed📌 Call phase
duration:
0.00019392650574445724outcome:
passed📌 Teardown phase
duration:
0.00017674081027507782outcome:
passed -
✅ Test 393
params:seconds=120.1, expected="2 minutes"📌 Parameters
params: seconds: 120.1 expected: "2 minutes" id: "120.1-2 minutes"📌 Setup phase
duration:
0.00027006398886442184outcome:
passed📌 Call phase
duration:
0.00018861889839172363outcome:
passed📌 Teardown phase
duration:
0.00019374210387468338outcome:
passed -
✅ Test 394
params:seconds=3599.9, expected="60 minutes"📌 Parameters
params: seconds: 3599.9 expected: "60 minutes" id: "3599.9-60 minutes"📌 Setup phase
duration:
0.0002715354785323143outcome:
passed📌 Call phase
duration:
0.00017022620886564255outcome:
passed📌 Teardown phase
duration:
0.0001792609691619873outcome:
passed -
✅ Test 395
params:seconds=3600.1, expected="60 minutes"📌 Parameters
params: seconds: 3600.1 expected: "60 minutes" id: "3600.1-60 minutes"📌 Setup phase
duration:
0.0002605542540550232outcome:
passed📌 Call phase
duration:
0.00017298292368650436outcome:
passed📌 Teardown phase
duration:
0.00017899740487337112outcome:
passed -
✅ Test 396
params:seconds=7199.9, expected="120 minutes"📌 Parameters
params: seconds: 7199.9 expected: "120 minutes" id: "7199.9-120 minutes"📌 Setup phase
duration:
0.0002739010378718376outcome:
passed📌 Call phase
duration:
0.00018831342458724976outcome:
passed📌 Teardown phase
duration:
0.0001707589253783226outcome:
passed -
✅ Test 397
params:seconds=7200.1, expected="2 hours"📌 Parameters
params: seconds: 7200.1 expected: "2 hours" id: "7200.1-2 hours"📌 Setup phase
duration:
0.00025513581931591034outcome:
passed📌 Call phase
duration:
0.00019259192049503326outcome:
passed📌 Teardown phase
duration:
0.00017960276454687119outcome:
passed -
✅ Test 398
params:seconds=90.4, expected="90 seconds"📌 Parameters
params: seconds: 90.4 expected: "90 seconds" id: "90.4-90 seconds"📌 Setup phase
duration:
0.0002604173496365547outcome:
passed📌 Call phase
duration:
0.0001691645011305809outcome:
passed📌 Teardown phase
duration:
0.00018272548913955688outcome:
passed -
✅ Test 399
params:seconds=90.6, expected="91 seconds"📌 Parameters
params: seconds: 90.6 expected: "91 seconds" id: "90.6-91 seconds"📌 Setup phase
duration:
0.0002621626481413841outcome:
passed📌 Call phase
duration:
0.00017129350453615189outcome:
passed📌 Teardown phase
duration:
0.0002652658149600029outcome:
passed -
✅ Test 400
params:seconds=121.9, expected="2 minutes"📌 Parameters
params: seconds: 121.9 expected: "2 minutes" id: "121.9-2 minutes"📌 Setup phase
duration:
0.0002873595803976059outcome:
passed📌 Call phase
duration:
0.00018196925520896912outcome:
passed📌 Teardown phase
duration:
0.0001756502315402031outcome:
passed -
✅ Test 401
params:seconds=1296000.0, expected="2 weeks"📌 Parameters
params: seconds: 1296000.0 expected: "2 weeks" id: "1296000.0-2 weeks"📌 Setup phase
duration:
0.00029979273676872253outcome:
passed📌 Call phase
duration:
0.0001933155581355095outcome:
passed📌 Teardown phase
duration:
0.00017550773918628693outcome:
passed -
✅ Test 402
params:seconds=2592000.0, expected="4 weeks"📌 Parameters
params: seconds: 2592000.0 expected: "4 weeks" id: "2592000.0-4 weeks"📌 Setup phase
duration:
0.0002594301477074623outcome:
passed📌 Call phase
duration:
0.00018672645092010498outcome:
passed📌 Teardown phase
duration:
0.00017719902098178864outcome:
passed -
✅ Test 403
params:seconds=2800000.0, expected="5 weeks"📌 Parameters
params: seconds: 2800000.0 expected: "5 weeks" id: "2800000.0-5 weeks"📌 Setup phase
duration:
0.0002560708671808243outcome:
passed📌 Call phase
duration:
0.00018082093447446823outcome:
passed📌 Teardown phase
duration:
0.00017304625362157822outcome:
passed -
✅ Test 404
params:seconds=3888000.0, expected="6 weeks"📌 Parameters
params: seconds: 3888000.0 expected: "6 weeks" id: "3888000.0-6 weeks"📌 Setup phase
duration:
0.0002577323466539383outcome:
passed📌 Call phase
duration:
0.00017889868468046188outcome:
passed📌 Teardown phase
duration:
0.0001700781285762787outcome:
passed -
✅ Test 405
params:seconds=5097600.0, expected="8 weeks"📌 Parameters
params: seconds: 5097600.0 expected: "8 weeks" id: "5097600.0-8 weeks"📌 Setup phase
duration:
0.00026451703161001205outcome:
passed📌 Call phase
duration:
0.00017150584608316422outcome:
passed📌 Teardown phase
duration:
0.00018526893109083176outcome:
passed -
✅ Test 406
params:seconds=5184000.0, expected="9 weeks"📌 Parameters
params: seconds: 5184000.0 expected: "9 weeks" id: "5184000.0-9 weeks"📌 Setup phase
duration:
0.0002632616087794304outcome:
passed📌 Call phase
duration:
0.0001751994714140892outcome:
passed📌 Teardown phase
duration:
0.00018317811191082outcome:
passed -
✅ Test 407
params:seconds=5270400.0, expected="2 months"📌 Parameters
params: seconds: 5270400.0 expected: "2 months" id: "5270400.0-2 months"📌 Setup phase
duration:
0.0002621859312057495outcome:
passed📌 Call phase
duration:
0.00020694918930530548outcome:
passed📌 Teardown phase
duration:
0.0001745549961924553outcome:
passed -
✅ Test 408
params:seconds=23328000.0, expected="9 months"📌 Parameters
params: seconds: 23328000.0 expected: "9 months" id: "23328000.0-9 months"📌 Setup phase
duration:
0.00026135798543691635outcome:
passed📌 Call phase
duration:
0.00018070824444293976outcome:
passed📌 Teardown phase
duration:
0.00018007587641477585outcome:
passed -
✅ Test 409
params:seconds=31104000.0, expected="12 months"📌 Parameters
params: seconds: 31104000.0 expected: "12 months" id: "31104000.0-12 months"📌 Setup phase
duration:
0.0002649454399943352outcome:
passed📌 Call phase
duration:
0.0001680878922343254outcome:
passed📌 Teardown phase
duration:
0.0001699225977063179outcome:
passed -
✅ Test 410
params:seconds=33696000.0, expected="13 months"📌 Parameters
params: seconds: 33696000.0 expected: "13 months" id: "33696000.0-13 months"📌 Setup phase
duration:
0.0002914387732744217outcome:
passed📌 Call phase
duration:
0.00018813647329807281outcome:
passed📌 Teardown phase
duration:
0.00019133836030960083outcome:
passed -
✅ Test 411
params:seconds=59616000.0, expected="23 months"📌 Parameters
params: seconds: 59616000.0 expected: "23 months" id: "59616000.0-23 months"📌 Setup phase
duration:
0.00026538968086242676outcome:
passed📌 Call phase
duration:
0.00018876977264881134outcome:
passed📌 Teardown phase
duration:
0.00017317943274974823outcome:
passed -
✅ Test 412
params:seconds=62208000.0, expected="24 months"📌 Parameters
params: seconds: 62208000.0 expected: "24 months" id: "62208000.0-24 months"📌 Setup phase
duration:
0.00024845823645591736outcome:
passed📌 Call phase
duration:
0.00018197577446699142outcome:
passed📌 Teardown phase
duration:
0.00017281435430049896outcome:
passed -
✅ Test 413
params:seconds=64208000.0, expected="2 years"📌 Parameters
params: seconds: 64208000.0 expected: "2 years" id: "64208000.0-2 years"📌 Setup phase
duration:
0.0002714144065976143outcome:
passed📌 Call phase
duration:
0.00017150677740573883outcome:
passed📌 Teardown phase
duration:
0.00019186269491910934outcome:
passed
-
-
📄 test_utils_registry.py
↳ Function: test_metaclass_creates_weakset
-
✅ Test 414
📌 Setup phase
duration:
0.00017339643090963364outcome:
passed📌 Call phase
duration:
0.0006965892389416695outcome:
passed📌 Teardown phase
duration:
0.00015372224152088165outcome:
passed
↳ Function: test_metaclass_tracks_instances
-
✅ Test 415
📌 Setup phase
duration:
0.00015153829008340836outcome:
passed📌 Call phase
duration:
0.0002876855432987213outcome:
passed📌 Teardown phase
duration:
0.00013926904648542404outcome:
passed
↳ Function: test_registry_inheritance
-
✅ Test 416
📌 Setup phase
duration:
0.00024757254868745804outcome:
passed📌 Call phase
duration:
0.0006654318422079086outcome:
passed📌 Teardown phase
duration:
0.00016502663493156433outcome:
passed
↳ Function: test_instance_tracking
-
✅ Test 417
📌 Setup phase
duration:
0.0002373773604631424outcome:
passed📌 Call phase
duration:
0.00025127921253442764outcome:
passed📌 Teardown phase
duration:
0.00015905778855085373outcome:
passed
↳ Function: test_collect_instances_recursive
-
✅ Test 418
📌 Setup phase
duration:
0.00020403973758220673outcome:
passed📌 Call phase
duration:
0.0013567088171839714outcome:
passed📌 Teardown phase
duration:
0.00019952189177274704outcome:
passed
↳ Function: test_instances_function
-
✅ Test 419
📌 Setup phase
duration:
0.00022881198674440384outcome:
passed📌 Call phase
duration:
0.0008979281410574913outcome:
passed📌 Teardown phase
duration:
0.000180685892701149outcome:
passed
↳ Function: test_non_registry_class_error
-
✅ Test 420
📌 Setup phase
duration:
0.00015987083315849304outcome:
passed📌 Call phase
duration:
0.00024019647389650345outcome:
passed📌 Teardown phase
duration:
0.00013599731028079987outcome:
passed
↳ Function: test_signature_preservation
-
✅ Test 421
📌 Setup phase
duration:
0.000138821080327034outcome:
passed📌 Call phase
duration:
0.00031583569943904877outcome:
passed📌 Teardown phase
duration:
0.00014900695532560349outcome:
passed
-
-
📄 test_utils_richcfg.py
↳ Function: test_rich_inspector_outputs_more_than_builtin
-
✅ Test 422
📌 Setup phase
duration:
0.0002908371388912201outcome:
passed📌 Call phase
duration:
0.09566524811089039outcome:
passedstdout:
╭─ user = <test_utils_richcfg.User object at 0x7fb008e6b1c0> ─╮ │ Represents a user in the system. │ │ │ │ ╭─────────────────────────────────────────────────────────╮ │ │ │ <test_utils_richcfg.User object at 0x7fb008e6b1c0> │ │ │ ╰─────────────────────────────────────────────────────────╯ │ │ │ │ age = 30 │ │ name = 'Alice' │ │ role = 'admin' │ │ greet = def greet(): Returns a welcome message. │ ╰─────────────────────────────────────────────────────────────╯ Type: User String form: <test_utils_richcfg.User object at 0x7fb008ee26d0> File: /workspace/tligui_y/slic/tests/test_utils_richcfg.py Source: class User: """Represents a user in the system.""" role = "admin" def __init__(self, name: str, age: int): self.name = name self.age = age def greet(self): """Returns a welcome message.""" return f"Welcome, {self.name}!"📌 Teardown phase
duration:
0.0003145728260278702outcome:
passed
-
-
📄 test_utils_run_later.py
↳ Function: test_init_and_repr
-
✅ Test 423
📌 Setup phase
duration:
0.0001890081912279129outcome:
passed📌 Call phase
duration:
0.0002995189279317856outcome:
passed📌 Teardown phase
duration:
0.00014306511729955673outcome:
passed
↳ Function: test_call
-
✅ Test 424
📌 Setup phase
duration:
0.00017002038657665253outcome:
passed📌 Call phase
duration:
0.00019601266831159592outcome:
passed📌 Teardown phase
duration:
0.00014820322394371033outcome:
passed
↳ Function: test_matmul_with_string
-
✅ Test 425
📌 Setup phase
duration:
0.00015090592205524445outcome:
passed📌 Call phase
duration:
0.00020815525203943253outcome:
passed📌 Teardown phase
duration:
0.00013199076056480408outcome:
passed
↳ Function: test_matmul_with_list
-
✅ Test 426
📌 Setup phase
duration:
0.00014352239668369293outcome:
passed📌 Call phase
duration:
0.00019044894725084305outcome:
passed📌 Teardown phase
duration:
0.00016051903367042542outcome:
passed
↳ Function: test_matmul_with_single_int
-
✅ Test 427
📌 Setup phase
duration:
0.00013739056885242462outcome:
passed📌 Call phase
duration:
0.00018009822815656662outcome:
passed📌 Teardown phase
duration:
0.00014049839228391647outcome:
passed
↳ Function: test_run_at_future_triggered_and_logs
-
✅ Test 428
📌 Setup phase
duration:
0.00033976417034864426outcome:
passed📌 Call phase
duration:
0.20593222975730896outcome:
passed📌 Teardown phase
duration:
0.0003349035978317261outcome:
passed
↳ Function: test_run_at_already_past
-
✅ Test 429
📌 Setup phase
duration:
0.00038101430982351303outcome:
passed📌 Call phase
duration:
0.00041412748396396637outcome:
passed📌 Teardown phase
duration:
0.0002293158322572708outcome:
passed
↳ Function: test_run_in_future_triggered_and_logs
-
✅ Test 430
📌 Setup phase
duration:
0.0003266874700784683outcome:
passed📌 Call phase
duration:
0.2020273758098483outcome:
passed📌 Teardown phase
duration:
0.0003580572083592415outcome:
passed
↳ Function: test_run_in_past
-
✅ Test 431
📌 Setup phase
duration:
0.0003930171951651573outcome:
passed📌 Call phase
duration:
0.00040360353887081146outcome:
passed📌 Teardown phase
duration:
0.00022715236991643906outcome:
passed
↳ Function: test_run_later_with_seconds
-
✅ Test 432
📌 Setup phase
duration:
0.0003061015158891678outcome:
passed📌 Call phase
duration:
0.202183298766613outcome:
passed📌 Teardown phase
duration:
0.0003468906506896019outcome:
passed
↳ Function: test_run_later_with_past_datetime
-
✅ Test 433
📌 Setup phase
duration:
0.0003658132627606392outcome:
passed📌 Call phase
duration:
0.00039387308061122894outcome:
passed📌 Teardown phase
duration:
0.00026223529130220413outcome:
passed
↳ Function: test_run_at_tqdm_multiple_updates
-
✅ Test 434
📌 Setup phase
duration:
0.0003559272736310959outcome:
passed📌 Call phase
duration:
0.2021295940503478outcome:
passed📌 Teardown phase
duration:
0.00036296527832746506outcome:
passed
↳ Function: test_today_basic
-
✅ Test 435
📌 Setup phase
duration:
0.00019054114818572998outcome:
passed📌 Call phase
duration:
0.0009017670527100563outcome:
passed📌 Teardown phase
duration:
0.00018011871725320816outcome:
passed
↳ Function: test_tomorrow_basic
-
✅ Test 436
📌 Setup phase
duration:
0.00017129816114902496outcome:
passed📌 Call phase
duration:
0.00045794807374477386outcome:
passed📌 Teardown phase
duration:
0.00014474615454673767outcome:
passed
↳ Function: test_yesterday_basic
-
✅ Test 437
📌 Setup phase
duration:
0.00016300473362207413outcome:
passed📌 Call phase
duration:
0.00039249006658792496outcome:
passed📌 Teardown phase
duration:
0.00016397051513195038outcome:
passed
↳ Function: test_today_matmul_string
-
✅ Test 438
📌 Setup phase
duration:
0.00014782045036554337outcome:
passed📌 Call phase
duration:
0.00039988476783037186outcome:
passed📌 Teardown phase
duration:
0.00014133937656879425outcome:
passed
↳ Function: test_tomorrow_matmul_list
-
✅ Test 439
📌 Setup phase
duration:
0.0001737968996167183outcome:
passed📌 Call phase
duration:
0.00039131008088588715outcome:
passed📌 Teardown phase
duration:
0.00015296787023544312outcome:
passed
↳ Function: test_yesterday_matmul_single
-
✅ Test 440
📌 Setup phase
duration:
0.00015128497034311295outcome:
passed📌 Call phase
duration:
0.0004206933081150055outcome:
passed📌 Teardown phase
duration:
0.0001484490931034088outcome:
passed
-
-
📄 test_utils_sendmail.py
↳ Function: test_sendmail_local_delivery
-
✅ Test 441
📌 Setup phase
duration:
0.00018304027616977692outcome:
passed📌 Call phase
duration:
0.12471010908484459outcome:
passed📌 Teardown phase
duration:
0.0003609629347920418outcome:
passed
↳ Function: test_sendmail_raises_on_sendmail_failure
-
✅ Test 442
📌 Setup phase
duration:
0.00040516629815101624outcome:
passed📌 Call phase
duration:
0.0009088432416319847outcome:
passed📌 Teardown phase
duration:
0.00022258330136537552outcome:
passed
-
-
📄 test_utils_sendsms.py
↳ Function: test_sendsms_local_delivery
-
✅ Test 443
📌 Setup phase
duration:
0.0001871613785624504outcome:
passed📌 Call phase
duration:
0.11797010060399771outcome:
passed📌 Teardown phase
duration:
0.00034553464502096176outcome:
passed
-
-
📄 test_utils_shortcut.py
↳ Function: TestShortcutInitialization
-
✅ Test 444
📌 Setup phase
duration:
0.0005111796781420708outcome:
passed📌 Call phase
duration:
0.00038313400000333786outcome:
passed📌 Teardown phase
duration:
0.0002102106809616089outcome:
passed -
✅ Test 445
📌 Setup phase
duration:
0.00028696469962596893outcome:
passed📌 Call phase
duration:
0.00020600110292434692outcome:
passed📌 Teardown phase
duration:
0.00026636943221092224outcome:
passed
↳ Function: test_run_method
-
✅ Test 446
📌 Setup phase
duration:
0.0005012918263673782outcome:
passed📌 Call phase
duration:
0.000851677730679512outcome:
passed📌 Teardown phase
duration:
0.00033634621649980545outcome:
passed
↳ Function: test_repr_output
-
✅ Test 447
📌 Setup phase
duration:
0.00036836322396993637outcome:
passed📌 Call phase
duration:
0.00034330692142248154outcome:
passed📌 Teardown phase
duration:
0.0003269677981734276outcome:
passed
↳ Function: test_source_with_regular_function
-
✅ Test 448
📌 Setup phase
duration:
0.0003675362095236778outcome:
passed📌 Call phase
duration:
0.002249801531434059outcome:
passed📌 Teardown phase
duration:
0.000264105387032032outcome:
passed
↳ Function: test_source_error_handling
-
✅ Test 449
📌 Setup phase
duration:
0.00036739371716976166outcome:
passed📌 Call phase
duration:
0.0010681645944714546outcome:
passed📌 Teardown phase
duration:
0.00020671822130680084outcome:
passed
↳ Function: test_as_shortcut_basic
-
✅ Test 450
📌 Setup phase
duration:
0.00025473441928625107outcome:
passed📌 Call phase
duration:
0.00019917450845241547outcome:
passed📌 Teardown phase
duration:
0.00016957148909568787outcome:
passed
↳ Function: test_as_shortcut_with_name
-
✅ Test 451
📌 Setup phase
duration:
0.00022205058485269547outcome:
passed📌 Call phase
duration:
0.00021464191377162933outcome:
passed📌 Teardown phase
duration:
0.00019839219748973846outcome:
passed
↳ Function: test_as_shortcut_factory_pattern
-
✅ Test 452
📌 Setup phase
duration:
0.000238749198615551outcome:
passed📌 Call phase
duration:
0.00020778831094503403outcome:
passed📌 Teardown phase
duration:
0.0002888152375817299outcome:
passed
↳ Function: TestShortcutsSingleton
-
✅ Test 453
📌 Setup phase
duration:
0.00041220709681510925outcome:
passed📌 Call phase
duration:
0.00024409219622612outcome:
passed📌 Teardown phase
duration:
0.00020844396203756332outcome:
passed -
✅ Test 455
📌 Setup phase
duration:
0.00039685796946287155outcome:
passed📌 Call phase
duration:
0.0002931719645857811outcome:
passed📌 Teardown phase
duration:
0.00019405502825975418outcome:
passed -
✅ Test 456
📌 Setup phase
duration:
0.0003308188170194626outcome:
passed📌 Call phase
duration:
0.0002444470301270485outcome:
passed📌 Teardown phase
duration:
0.00019927509129047394outcome:
passed -
✅ Test 457
📌 Setup phase
duration:
0.00028459634631872177outcome:
passed📌 Call phase
duration:
0.0004222476854920387outcome:
passed📌 Teardown phase
duration:
0.0002658143639564514outcome:
passed
↳ Function: TestFullIntegration
-
✅ Test 458
📌 Setup phase
duration:
0.0004458446055650711outcome:
passed📌 Call phase
duration:
0.0012847352772951126outcome:
passedstdout:
Calculating 3 + 4📌 Teardown phase
duration:
0.0002840030938386917outcome:
passed
↳ Function: test_registry_inheritance
-
✅ Test 460
📌 Setup phase
duration:
0.00025696028023958206outcome:
passed📌 Call phase
duration:
0.00019340775907039642outcome:
passed📌 Teardown phase
duration:
0.00019348319619894028outcome:
passed
-
-
📄 test_utils_snapshot.py
↳ Function: test_snapshot
-
✅ Test 461
params:test_input=[["v1", "Visible", false], ["h1", "Hidden", true]], expected=["Visible"], kwargs={}📌 Parameters
params: test_input: [["v1", "Visible", false], ["h1", "Hidden", true]] expected: ["Visible"] kwargs: {} id: "exclude_internals"📌 Setup phase
duration:
0.0003636544570326805outcome:
passed📌 Call phase
duration:
0.0007474822923541069outcome:
passed📌 Teardown phase
duration:
0.00021865777671337128outcome:
passed -
✅ Test 462
params:test_input=[["v1", "Visible", false], ["h1", "Hidden", true]], expected=["Visible", "Hidden"], kwargs={"include_internal": true}📌 Parameters
params: test_input: [["v1", "Visible", false], ["h1", "Hidden", true]] expected: ["Visible", "Hidden"] kwargs: {"include_internal": true} id: "include_internals"📌 Setup phase
duration:
0.00034580565989017487outcome:
passed📌 Call phase
duration:
0.0005304524675011635outcome:
passed📌 Teardown phase
duration:
0.00021105259656906128outcome:
passed -
✅ Test 463
params:test_input=[], expected=[], kwargs={}📌 Parameters
params: test_input: [] expected: [] kwargs: {} id: "empty_case"📌 Setup phase
duration:
0.00031975749880075455outcome:
passed📌 Call phase
duration:
0.0001783529296517372outcome:
passed📌 Teardown phase
duration:
0.00020384881645441055outcome:
passed -
✅ Test 464
params:test_input=[["3", "Charlie"], ["1", "Alpha"], ["2", "Beta"]], expected=["Alpha", "Beta", "Charlie"], kwargs="{'sort_key': <class 'str'>}"📌 Parameters
params: test_input: [["3", "Charlie"], ["1", "Alpha"], ["2", "Beta"]] expected: ["Alpha", "Beta", "Charlie"] kwargs: "{'sort_key': <class 'str'>}" id: "sort_str"📌 Setup phase
duration:
0.00031929370015859604outcome:
passed📌 Call phase
duration:
0.0006642891094088554outcome:
passed📌 Teardown phase
duration:
0.0002147294580936432outcome:
passed -
✅ Test 465
params:test_input=[["z3", "C"], ["a1", "A"], ["m2", "B"]], expected=["A", "B", "C"], kwargs="{'sort_key': <function <lambda> at 0x7fb00a17cdc0>}"📌 Parameters
params: test_input: [["z3", "C"], ["a1", "A"], ["m2", "B"]] expected: ["A", "B", "C"] kwargs: "{'sort_key': <function <lambda> at 0x7fb00a17cdc0>}" id: "sort_id"📌 Setup phase
duration:
0.00032575149089097977outcome:
passed📌 Call phase
duration:
0.0006218142807483673outcome:
passed📌 Teardown phase
duration:
0.00020739808678627014outcome:
passed -
✅ Test 466
params:test_input=[["3", "Charlie"], ["1", "alpha"], ["2", "Beta"]], expected=["alpha", "Beta", "Charlie"], kwargs="{'sort_key': <function <lambda> at 0x7fb00a17ce50>}"📌 Parameters
params: test_input: [["3", "Charlie"], ["1", "alpha"], ["2", "Beta"]] expected: ["alpha", "Beta", "Charlie"] kwargs: "{'sort_key': <function <lambda> at 0x7fb00a17ce50>}" id: "sort_case_insensitive"📌 Setup phase
duration:
0.00033615902066230774outcome:
passed📌 Call phase
duration:
0.0006006695330142975outcome:
passed📌 Teardown phase
duration:
0.00021436437964439392outcome:
passed -
✅ Test 467
params:test_input=[["1", "A"], ["2", "BB"], ["3", "CCC"]], expected=["A", "BB", "CCC"], kwargs="{'sort_key': <function <lambda> at 0x7fb00a17cee0>}"📌 Parameters
params: test_input: [["1", "A"], ["2", "BB"], ["3", "CCC"]] expected: ["A", "BB", "CCC"] kwargs: "{'sort_key': <function <lambda> at 0x7fb00a17cee0>}" id: "sort_length"📌 Setup phase
duration:
0.00032514240592718124outcome:
passed📌 Call phase
duration:
0.0006281910464167595outcome:
passed📌 Teardown phase
duration:
0.00021290499716997147outcome:
passed -
✅ Test 468
params:test_input=[["1", "A"], ["2", "B"], ["3", "C"]], expected=["C", "B", "A"], kwargs="{'sort_key': <function <lambda> at 0x7fb00a17cf70>}"📌 Parameters
params: test_input: [["1", "A"], ["2", "B"], ["3", "C"]] expected: ["C", "B", "A"] kwargs: "{'sort_key': <function <lambda> at 0x7fb00a17cf70>}" id: "sort_reverse"📌 Setup phase
duration:
0.00033295154571533203outcome:
passed📌 Call phase
duration:
0.0005932440981268883outcome:
passed📌 Teardown phase
duration:
0.00020710937678813934outcome:
passed
-
-
📄 test_utils_termtitle.py
↳ Function: test_terminal_title_with_tmux
-
✅ Test 469
📌 Setup phase
duration:
0.00023048743605613708outcome:
passed📌 Call phase
duration:
0.01932519394904375outcome:
passed📌 Teardown phase
duration:
0.00033251475542783737outcome:
passed
-
-
📄 test_utils_tqdm_mod.py
↳ Function: test_complete_progress_bar
-
✅ Test 470
📌 Setup phase
duration:
0.00025259703397750854outcome:
passed📌 Call phase
duration:
0.004348477348685265outcome:
passed📌 Teardown phase
duration:
0.0001856209710240364outcome:
passed
↳ Function: test_set_progress_multiple_points
-
✅ Test 471
📌 Setup phase
duration:
0.00018063466995954514outcome:
passed📌 Call phase
duration:
0.0018744030967354774outcome:
passed📌 Teardown phase
duration:
0.000225752592086792outcome:
passed
↳ Function: test_format_sizeof_alignment
-
✅ Test 472
📌 Setup phase
duration:
0.00019090529531240463outcome:
passed📌 Call phase
duration:
0.0002457965165376663outcome:
passed📌 Teardown phase
duration:
0.00015263911336660385outcome:
passed
↳ Function: test_custom_unit
-
✅ Test 474
📌 Setup phase
duration:
0.0002111205831170082outcome:
passed📌 Call phase
duration:
0.004980826750397682outcome:
passed📌 Teardown phase
duration:
0.00017086416482925415outcome:
passed
↳ Function: test_clamp_above_total
-
✅ Test 475
📌 Setup phase
duration:
0.0001762108877301216outcome:
passed📌 Call phase
duration:
0.0006310977041721344outcome:
passed📌 Teardown phase
duration:
0.00015402492135763168outcome:
passed
↳ Function: test_clamp_below_zero
-
✅ Test 476
📌 Setup phase
duration:
0.00015932880342006683outcome:
passed📌 Call phase
duration:
0.0008271848782896996outcome:
passed📌 Teardown phase
duration:
0.00017351564019918442outcome:
passed
-
-
📄 test_utils_trinary.py
↳ Function: test_check_trinary_valid_values
-
✅ Test 477
📌 Setup phase
duration:
0.0001839175820350647outcome:
passed📌 Call phase
duration:
0.0002479720860719681outcome:
passed📌 Teardown phase
duration:
0.0001466674730181694outcome:
passed
↳ Function: test_check_trinary_invalid_value
-
✅ Test 478
📌 Setup phase
duration:
0.0001465706154704094outcome:
passed📌 Call phase
duration:
0.0004920763894915581outcome:
passed📌 Teardown phase
duration:
0.00014873314648866653outcome:
passed
↳ Function: test_check_trinary_with_custom_allowed_values
-
✅ Test 479
📌 Setup phase
duration:
0.0001583518460392952outcome:
passed📌 Call phase
duration:
0.00020693521946668625outcome:
passed📌 Teardown phase
duration:
0.00015293434262275696outcome:
passed
-
-
📄 test_utils_typecast.py
↳ Function: test_downcast_success
-
✅ Test 480
📌 Setup phase
duration:
0.00015307310968637466outcome:
passed📌 Call phase
duration:
0.0002329498529434204outcome:
passed📌 Teardown phase
duration:
0.00014126021414995193outcome:
passed
↳ Function: test_upcast_success
-
✅ Test 481
📌 Setup phase
duration:
0.00014754384756088257outcome:
passed📌 Call phase
duration:
0.0001903977245092392outcome:
passed📌 Teardown phase
duration:
0.00013022031635046005outcome:
passed
↳ Function: test_downcast_invalid
-
✅ Test 482
📌 Setup phase
duration:
0.00016390066593885422outcome:
passed📌 Call phase
duration:
0.00042653828859329224outcome:
passed📌 Teardown phase
duration:
0.00016292184591293335outcome:
passed
↳ Function: test_upcast_invalid
-
✅ Test 483
📌 Setup phase
duration:
0.00014743395149707794outcome:
passed📌 Call phase
duration:
0.00023274775594472885outcome:
passed📌 Teardown phase
duration:
0.0001426776871085167outcome:
passed
↳ Function: test_object_identity_preserved
-
✅ Test 484
📌 Setup phase
duration:
0.0001637125387787819outcome:
passed📌 Call phase
duration:
0.0001999344676733017outcome:
passed📌 Teardown phase
duration:
0.00013383198529481888outcome:
passed
↳ Function: test_ensure_subclass_valid
-
✅ Test 485
📌 Setup phase
duration:
0.00016519427299499512outcome:
passed📌 Call phase
duration:
0.00017351564019918442outcome:
passed📌 Teardown phase
duration:
0.0001334184780716896outcome:
passed
↳ Function: test_ensure_subclass_invalid
-
✅ Test 486
📌 Setup phase
duration:
0.00014252681285142899outcome:
passed📌 Call phase
duration:
0.00020788609981536865outcome:
passed📌 Teardown phase
duration:
0.0001469384878873825outcome:
passed
↳ Function: test_cast_changes_class
-
✅ Test 487
📌 Setup phase
duration:
0.0001443326473236084outcome:
passed📌 Call phase
duration:
0.00020034797489643097outcome:
passed📌 Teardown phase
duration:
0.0001340201124548912outcome:
passed
↳ Function: test_cast_preserves_identity
-
✅ Test 488
📌 Setup phase
duration:
0.00014389026910066605outcome:
passed📌 Call phase
duration:
0.00016785785555839539outcome:
passed📌 Teardown phase
duration:
0.00013709813356399536outcome:
passed
-
-
📄 test_utils_utils.py
↳ Function: test_singleton_instance
-
✅ Test 489
📌 Setup phase
duration:
0.0001629125326871872outcome:
passed📌 Call phase
duration:
0.00019598007202148438outcome:
passed📌 Teardown phase
duration:
0.00013135932385921478outcome:
passed
↳ Function: test_singleton_identity
-
✅ Test 490
📌 Setup phase
duration:
0.00016689114272594452outcome:
passed📌 Call phase
duration:
0.00016902759671211243outcome:
passed📌 Teardown phase
duration:
0.00013207737356424332outcome:
passed
↳ Function: test_typename
-
✅ Test 491
params:obj=null, expected="NoneType"📌 Parameters
params: obj: null expected: "NoneType" id: "None-NoneType"📌 Setup phase
duration:
0.0003762515261769295outcome:
passed📌 Call phase
duration:
0.0002025151625275612outcome:
passed📌 Teardown phase
duration:
0.00018792133778333664outcome:
passed -
✅ Test 492
params:obj=true, expected="bool"📌 Parameters
params: obj: true expected: "bool" id: "True-bool"📌 Setup phase
duration:
0.0003099227324128151outcome:
passed📌 Call phase
duration:
0.00017653033137321472outcome:
passed📌 Teardown phase
duration:
0.00017341040074825287outcome:
passed -
✅ Test 493
params:obj=42, expected="int"📌 Parameters
params: obj: 42 expected: "int" id: "42-int"📌 Setup phase
duration:
0.0002698032185435295outcome:
passed📌 Call phase
duration:
0.0001731663942337036outcome:
passed📌 Teardown phase
duration:
0.0001797722652554512outcome:
passed -
✅ Test 494
params:obj=3.14, expected="float"📌 Parameters
params: obj: 3.14 expected: "float" id: "3.14-float"📌 Setup phase
duration:
0.00025097746402025223outcome:
passed📌 Call phase
duration:
0.00018275994807481766outcome:
passed📌 Teardown phase
duration:
0.00017573963850736618outcome:
passed -
✅ Test 495
params:obj="text", expected="str"📌 Parameters
params: obj: "text" expected: "str" id: "text-str"📌 Setup phase
duration:
0.00027066003531217575outcome:
passed📌 Call phase
duration:
0.00016723759472370148outcome:
passed📌 Teardown phase
duration:
0.00017752870917320251outcome:
passed -
✅ Test 496
params:obj="{1, 2, 3}", expected="set"📌 Parameters
params: obj: "{1, 2, 3}" expected: "set" id: "obj5-set"📌 Setup phase
duration:
0.0002638222649693489outcome:
passed📌 Call phase
duration:
0.00017328467220067978outcome:
passed📌 Teardown phase
duration:
0.00017656851559877396outcome:
passed -
✅ Test 497
params:obj=[[1], [2, 3]], expected="list"📌 Parameters
params: obj: [[1], [2, 3]] expected: "list" id: "obj6-list"📌 Setup phase
duration:
0.0002463134005665779outcome:
passed📌 Call phase
duration:
0.00017745699733495712outcome:
passed📌 Teardown phase
duration:
0.000180903822183609outcome:
passed -
✅ Test 498
params:obj=[{"a": [1, 2]}, {"b": [3, 4]}], expected="list"📌 Parameters
params: obj: [{"a": [1, 2]}, {"b": [3, 4]}] expected: "list" id: "obj7-list"📌 Setup phase
duration:
0.00027168821543455124outcome:
passed📌 Call phase
duration:
0.0001749107614159584outcome:
passed📌 Teardown phase
duration:
0.0001746099442243576outcome:
passed -
✅ Test 499
params:obj={"key": [{"nested": 1}, [2, 3]]}, expected="dict"📌 Parameters
params: obj: {"key": [{"nested": 1}, [2, 3]]} expected: "dict" id: "obj8-dict"📌 Setup phase
duration:
0.00025437213480472565outcome:
passed📌 Call phase
duration:
0.000168592669069767outcome:
passed📌 Teardown phase
duration:
0.0001809634268283844outcome:
passed -
✅ Test 500
params:obj="<function <lambda> at 0x7fb00a19d700>", expected="function"📌 Parameters
params: obj: "<function <lambda> at 0x7fb00a19d700>" expected: "function" id: "<lambda>-function"📌 Setup phase
duration:
0.00039803050458431244outcome:
passed📌 Call phase
duration:
0.0001772027462720871outcome:
passed📌 Teardown phase
duration:
0.00018321815878152847outcome:
passed -
✅ Test 501
params:obj="<function sample_function at 0x7fb00a19d670>", expected="function"📌 Parameters
params: obj: "<function sample_function at 0x7fb00a19d670>" expected: "function" id: "sample_function-function"📌 Setup phase
duration:
0.0003556348383426666outcome:
passed📌 Call phase
duration:
0.000189267098903656outcome:
passed📌 Teardown phase
duration:
0.00018392782658338547outcome:
passed -
✅ Test 502
params:obj="<function sample_function.<locals>.nested at 0x7fb00a19d790>", expected="function"📌 Parameters
params: obj: "<function sample_function.<locals>.nested at 0x7fb00a19d790>" expected: "function" id: "nested-function"📌 Setup phase
duration:
0.00027398765087127686outcome:
passed📌 Call phase
duration:
0.00017681624740362167outcome:
passed📌 Teardown phase
duration:
0.0002568485215306282outcome:
passed -
✅ Test 503
params:obj="<built-in function len>", expected="builtin_function_or_method"📌 Parameters
params: obj: "<built-in function len>" expected: "builtin_function_or_method" id: "len-builtin_function_or_method"📌 Setup phase
duration:
0.0002836771309375763outcome:
passed📌 Call phase
duration:
0.00017629284411668777outcome:
passed📌 Teardown phase
duration:
0.0001776609569787979outcome:
passed -
✅ Test 504
params:obj="<built-in function sum>", expected="builtin_function_or_method"📌 Parameters
params: obj: "<built-in function sum>" expected: "builtin_function_or_method" id: "sum-builtin_function_or_method"📌 Setup phase
duration:
0.0002568913623690605outcome:
passed📌 Call phase
duration:
0.00018116645514965057outcome:
passed📌 Teardown phase
duration:
0.00017334707081317902outcome:
passed -
✅ Test 505
params:obj="<module 'math' from '/workspace/tligui_y/slic/.pixi/envs/default/lib/python3.8/lib-dynload/math.cpython-38-x86_64-linux-gnu.so'>", expected="module"📌 Parameters
params: obj: "<module 'math' from '/workspace/tligui_y/slic/.pixi/envs/default/lib/python3.8/lib-dynload/math.cpython-38-x86_64-linux-gnu.so'>" expected: "module" id: "math-module"📌 Setup phase
duration:
0.00026643089950084686outcome:
passed📌 Call phase
duration:
0.00016648788005113602outcome:
passed📌 Teardown phase
duration:
0.00020015612244606018outcome:
passed -
✅ Test 506
params:obj="<module 'sys' (built-in)>", expected="module"📌 Parameters
params: obj: "<module 'sys' (built-in)>" expected: "module" id: "sys-module"📌 Setup phase
duration:
0.00026122014969587326outcome:
passed📌 Call phase
duration:
0.00019053369760513306outcome:
passed📌 Teardown phase
duration:
0.00018748920410871506outcome:
passed -
✅ Test 507
params:obj="<class 'function'>", expected="type"📌 Parameters
params: obj: "<class 'function'>" expected: "type" id: "function-type"📌 Setup phase
duration:
0.0002760067582130432outcome:
passed📌 Call phase
duration:
0.0001702951267361641outcome:
passed📌 Teardown phase
duration:
0.0001702113077044487outcome:
passed -
✅ Test 508
params:obj="<generator object <genexpr> at 0x7fb008eeccf0>", expected="generator"📌 Parameters
params: obj: "<generator object <genexpr> at 0x7fb008eeccf0>" expected: "generator" id: "<genexpr>-generator"📌 Setup phase
duration:
0.00026131048798561096outcome:
passed📌 Call phase
duration:
0.00016958080232143402outcome:
passed📌 Teardown phase
duration:
0.0001851273700594902outcome:
passed -
✅ Test 509
params:obj="<list_iterator object at 0x7fb008bde760>", expected="list_iterator"📌 Parameters
params: obj: "<list_iterator object at 0x7fb008bde760>" expected: "list_iterator" id: "obj18-list_iterator"📌 Setup phase
duration:
0.0002519572153687477outcome:
passed📌 Call phase
duration:
0.0001866621896624565outcome:
passed📌 Teardown phase
duration:
0.0001796931028366089outcome:
passed
↳ Function: test_next_int
-
✅ Test 510
params:nums=[1, 2, 3], expected=4📌 Parameters
params: nums: [1, 2, 3] expected: 4 id: "nums0-4"📌 Setup phase
duration:
0.00026272889226675034outcome:
passed📌 Call phase
duration:
0.00017329677939414978outcome:
passed📌 Teardown phase
duration:
0.00018889643251895905outcome:
passed -
✅ Test 511
params:nums=[10, 20], expected=21📌 Parameters
params: nums: [10, 20] expected: 21 id: "nums1-21"📌 Setup phase
duration:
0.0002625342458486557outcome:
passed📌 Call phase
duration:
0.0001695919781923294outcome:
passed📌 Teardown phase
duration:
0.00017555337399244308outcome:
passed -
✅ Test 512
params:nums=[], expected=0📌 Parameters
params: nums: [] expected: 0 id: "nums2-0"📌 Setup phase
duration:
0.0002733990550041199outcome:
passed📌 Call phase
duration:
0.000180722214281559outcome:
passed📌 Teardown phase
duration:
0.0001756986603140831outcome:
passed
↳ Function: test_zero_pad
-
✅ Test 513
params:i=7, n=3, expected="007"📌 Parameters
params: i: 7 n: 3 expected: "007" id: "7-3-007"📌 Setup phase
duration:
0.00031394604593515396outcome:
passed📌 Call phase
duration:
0.0001777680590748787outcome:
passed📌 Teardown phase
duration:
0.00023316871374845505outcome:
passed -
✅ Test 514
params:i=123, n=5, expected="00123"📌 Parameters
params: i: 123 n: 5 expected: "00123" id: "123-5-00123"📌 Setup phase
duration:
0.0003155544400215149outcome:
passed📌 Call phase
duration:
0.00019193533807992935outcome:
passed📌 Teardown phase
duration:
0.0001885201781988144outcome:
passed -
✅ Test 515
params:i=0, n=2, expected="00"📌 Parameters
params: i: 0 n: 2 expected: "00" id: "0-2-00"📌 Setup phase
duration:
0.00030646007508039474outcome:
passed📌 Call phase
duration:
0.0001785745844244957outcome:
passed📌 Teardown phase
duration:
0.00018867012113332748outcome:
passed
↳ Function: test_iround
-
✅ Test 516
params:val=3.6, expected=4📌 Parameters
params: val: 3.6 expected: 4 id: "3.6-4"📌 Setup phase
duration:
0.0002657948061823845outcome:
passed📌 Call phase
duration:
0.00017826445400714874outcome:
passed📌 Teardown phase
duration:
0.0001774858683347702outcome:
passed -
✅ Test 517
params:val=2.1, expected=2📌 Parameters
params: val: 2.1 expected: 2 id: "2.1-2"📌 Setup phase
duration:
0.00027018599212169647outcome:
passed📌 Call phase
duration:
0.00017158221453428268outcome:
passed📌 Teardown phase
duration:
0.00017638318240642548outcome:
passed -
✅ Test 518
params:val=-1.5, expected=-2📌 Parameters
params: val: -1.5 expected: -2 id: "-1.5--2"📌 Setup phase
duration:
0.00026218872517347336outcome:
passed📌 Call phase
duration:
0.00016784761101007462outcome:
passed📌 Teardown phase
duration:
0.0001834612339735031outcome:
passed -
✅ Test 519
params:val=-1.4, expected=-1📌 Parameters
params: val: -1.4 expected: -1 id: "-1.4--1"📌 Setup phase
duration:
0.0002598743885755539outcome:
passed📌 Call phase
duration:
0.00017891637980937958outcome:
passed📌 Teardown phase
duration:
0.00017403624951839447outcome:
passed
↳ Function: test_sorted_naturally
-
✅ Test 520
params:items=["file1", "file10", "file2"], expected=["file1", "file2", "file10"]📌 Parameters
params: items: ["file1", "file10", "file2"] expected: ["file1", "file2", "file10"] id: "items0-expected0"📌 Setup phase
duration:
0.00025829486548900604outcome:
passed📌 Call phase
duration:
0.00022658612579107285outcome:
passed📌 Teardown phase
duration:
0.00017293915152549744outcome:
passed -
✅ Test 521
params:items=["z9", "z10", "z2", "z1"], expected=["z1", "z2", "z9", "z10"]📌 Parameters
params: items: ["z9", "z10", "z2", "z1"] expected: ["z1", "z2", "z9", "z10"] id: "items1-expected1"📌 Setup phase
duration:
0.00025672465562820435outcome:
passed📌 Call phase
duration:
0.00020954106003046036outcome:
passed📌 Teardown phase
duration:
0.00018019229173660278outcome:
passed
↳ Function: test_sorted_naturally_reverse
-
✅ Test 522
params:items=["file1", "file10", "file2"], expected=["file10", "file2", "file1"]📌 Parameters
params: items: ["file1", "file10", "file2"] expected: ["file10", "file2", "file1"] id: "items0-expected0"📌 Setup phase
duration:
0.0002729557454586029outcome:
passed📌 Call phase
duration:
0.0002037612721323967outcome:
passed📌 Teardown phase
duration:
0.00017768330872058868outcome:
passed
-
-
📄 test_utils_xrange.py
↳ Function: test_xrange_finite
-
✅ Test 523
params:args=[10], kwargs={}, expected=[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]📌 Parameters
params: args: [10] kwargs: {} expected: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] id: "args0-kwargs0-expected0"📌 Setup phase
duration:
0.00034181587398052216outcome:
passed📌 Call phase
duration:
0.0002105366438627243outcome:
passed📌 Teardown phase
duration:
0.00019683130085468292outcome:
passed -
✅ Test 524
params:args=[0, 10], kwargs={}, expected=[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]📌 Parameters
params: args: [0, 10] kwargs: {} expected: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] id: "args1-kwargs1-expected1"📌 Setup phase
duration:
0.00031930673867464066outcome:
passed📌 Call phase
duration:
0.00018392689526081085outcome:
passed📌 Teardown phase
duration:
0.00019947532564401627outcome:
passed -
✅ Test 525
params:args=[0, 10, 2], kwargs={}, expected=[0, 2, 4, 6, 8]📌 Parameters
params: args: [0, 10, 2] kwargs: {} expected: [0, 2, 4, 6, 8] id: "args2-kwargs2-expected2"📌 Setup phase
duration:
0.0003035031259059906outcome:
passed📌 Call phase
duration:
0.0001931171864271164outcome:
passed📌 Teardown phase
duration:
0.000985761173069477outcome:
passed -
✅ Test 526
params:args=[10], kwargs={"step": 2}, expected=[0, 2, 4, 6, 8]📌 Parameters
params: args: [10] kwargs: {"step": 2} expected: [0, 2, 4, 6, 8] id: "args3-kwargs3-expected3"📌 Setup phase
duration:
0.0003355499356985092outcome:
passed📌 Call phase
duration:
0.00019311532378196716outcome:
passed📌 Teardown phase
duration:
0.00020562577992677689outcome:
passed
↳ Function: test_xrange_infinite
-
✅ Test 527
params:args=[], kwargs={}, expected_repr="count(0)"📌 Parameters
params: args: [] kwargs: {} expected_repr: "count(0)" id: "args0-kwargs0-count(0)"📌 Setup phase
duration:
0.0003374321386218071outcome:
passed📌 Call phase
duration:
0.00019863992929458618outcome:
passed📌 Teardown phase
duration:
0.00019927415996789932outcome:
passed -
✅ Test 528
params:args=[], kwargs={"step": 2}, expected_repr="count(0, 2)"📌 Parameters
params: args: [] kwargs: {"step": 2} expected_repr: "count(0, 2)" id: "args1-kwargs1-count(0, 2)"📌 Setup phase
duration:
0.00029955990612506866outcome:
passed📌 Call phase
duration:
0.00019516795873641968outcome:
passed📌 Teardown phase
duration:
0.0001911446452140808outcome:
passed
↳ Function: test_xrange_too_many_args
-
✅ Test 529
params:args=[1, 2, 3, 4]📌 Parameters
params: args: [1, 2, 3, 4] id: "args0"📌 Setup phase
duration:
0.0002162707969546318outcome:
passed📌 Call phase
duration:
0.0005040857940912247outcome:
passed📌 Teardown phase
duration:
0.0009105866774916649outcome:
passed
-
❌ Failed (7)
-
📄 test_utils_debug.py
↳ Function: test_short_repr
-
❌ Test 141
params:value="aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa", cutoff=10, expected="'aaaaaaaaaa..."📌 Parameters
params: value: "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" cutoff: 10 expected: "'aaaaaaaaaa..." id: "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa-10-'aaaaaaaaaa..."📌 Setup phase
duration:
0.0003125173971056938outcome:
passed📌 Call phase
duration:
0.0009140986949205399outcome:
failedcrash:
path: /workspace/tligui_y/slic/tests/test_utils_debug.py lineno: 66 message: assert "'aaaaaaaaa..." == "'aaaaaaaaaa..." - 'aaaaaaaaaa... ? - + 'aaaaaaaaa...traceback:
- path: tests/test_utils_debug.py lineno: 66 message: AssertionErrorlongrepr:
value = 'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa' cutoff = 10, expected = "'aaaaaaaaaa..." @pytest.mark.parametrize( "value, cutoff, expected", [ ("abc", 10, "'abc'"), ("a" * 100, 10, "'aaaaaaaaaa..."), (12345, 10, "12345"), ([0]*100, 15, str(repr([0]*100))[:15] + "..."), (None, 10, "None"), (type("Obj", (), {"__repr__": lambda self: "Obj(" + "x"*50 + ")"})(), 20, "Obj(xxxxxxxxxxxxxxxxx..."), ] ) def test_short_repr(value, cutoff, expected): > assert short_repr(value, cutoff) == expected E assert "'aaaaaaaaa..." == "'aaaaaaaaaa..." E E - 'aaaaaaaaaa... E ? - E + 'aaaaaaaaa... tests/test_utils_debug.py:66: AssertionError📌 Teardown phase
duration:
0.0003533177077770233outcome:
passed -
❌ Test 145
params:value="Obj(xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx)", cutoff=20, expected="Obj(xxxxxxxxxxxxxxxxx..."📌 Parameters
params: value: "Obj(xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx)" cutoff: 20 expected: "Obj(xxxxxxxxxxxxxxxxx..." id: "value5-20-Obj(xxxxxxxxxxxxxxxxx..."📌 Setup phase
duration:
0.0003032879903912544outcome:
passed📌 Call phase
duration:
0.0006267717108130455outcome:
failedcrash:
path: /workspace/tligui_y/slic/tests/test_utils_debug.py lineno: 66 message: AssertionError: assert 'Obj(xxxxxxxxxxxxxxxx...' == 'Obj(xxxxxxxxxxxxxxxxx...' - Obj(xxxxxxxxxxxxxxxxx... ? - + Obj(xxxxxxxxxxxxxxxx...traceback:
- path: tests/test_utils_debug.py lineno: 66 message: AssertionErrorlongrepr:
value = Obj(xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx), cutoff = 20 expected = 'Obj(xxxxxxxxxxxxxxxxx...' @pytest.mark.parametrize( "value, cutoff, expected", [ ("abc", 10, "'abc'"), ("a" * 100, 10, "'aaaaaaaaaa..."), (12345, 10, "12345"), ([0]*100, 15, str(repr([0]*100))[:15] + "..."), (None, 10, "None"), (type("Obj", (), {"__repr__": lambda self: "Obj(" + "x"*50 + ")"})(), 20, "Obj(xxxxxxxxxxxxxxxxx..."), ] ) def test_short_repr(value, cutoff, expected): > assert short_repr(value, cutoff) == expected E AssertionError: assert 'Obj(xxxxxxxxxxxxxxxx...' == 'Obj(xxxxxxxxxxxxxxxxx...' E E - Obj(xxxxxxxxxxxxxxxxx... E ? - E + Obj(xxxxxxxxxxxxxxxx... tests/test_utils_debug.py:66: AssertionError📌 Teardown phase
duration:
0.0002766028046607971outcome:
passed
-
-
📄 test_utils_get_adj.py
↳ Function: test_get_adjs_filter
-
❌ Test 233
📌 Setup phase
duration:
0.00015352293848991394outcome:
passed📌 Call phase
duration:
0.0014435434713959694outcome:
failedcrash:
path: /workspace/tligui_y/slic/tests/test_utils_get_adj.py lineno: 42 message: AssertionError: assert {'contrast', ...mid_contrast'} == {'brightness'...mid_contrast'} Extra items in the right set: 'brightness' Full diff: { - 'brightness', 'contrast', 'mid_brightness', 'mid_contrast', }traceback:
- path: tests/test_utils_get_adj.py lineno: 42 message: AssertionErrorlongrepr:
def test_get_adjs_filter(): a4 = SubAdjustable("mid_brightness", units="%", limit_low=0, limit_high=100) a5 = SubAdjustable("debug_internal", internal=True) public = get_adjs() > assert set(public) == {'brightness', 'contrast', 'mid_contrast', 'mid_brightness'} E AssertionError: assert {'contrast', ...mid_contrast'} == {'brightness'...mid_contrast'} E E Extra items in the right set: E 'brightness' E E Full diff: E { E - 'brightness', E 'contrast', E 'mid_brightness', E 'mid_contrast', E } tests/test_utils_get_adj.py:42: AssertionError📌 Teardown phase
duration:
0.0001886766403913498outcome:
passed
-
-
📄 test_utils_logcfg.py
↳ Function: test_import_logging_once_per_module
-
❌ Test 246
📌 Setup phase
duration:
0.00018584728240966797outcome:
passed📌 Call phase
duration:
1.8175651161000133outcome:
failedcrash:
path: /workspace/tligui_y/slic/tests/test_utils_logcfg.py lineno: 78 message: AssertionError: Expected 1 import log for 'math', found 0 assert 0 == 1traceback:
- path: tests/test_utils_logcfg.py lineno: 78 message: AssertionErrorstdout:
[E 250829 13:04:49 tools:40] cannot assign endstation to IP 172.18.0.3 (bc5a97ddab18) [W 250829 13:04:49 pvpreload:38] PV preload file not loaded due to: FileNotFoundError: [Errno 2] No such file or directory: '/root/.slic/pvpreload'longrepr:
def test_import_logging_once_per_module(): code = textwrap.dedent(""" from slic.utils.logcfg import * import math import io import random """) with tempfile.NamedTemporaryFile("w", suffix=".py", delete=False) as tmp: tmp.write(code) tmp_path = tmp.name env = os.environ.copy() root_path = os.path.abspath(os.path.join(os.path.dirname(__file__), '..')) env["PYTHONPATH"] = root_path + os.pathsep + env.get("PYTHONPATH", "") result = subprocess.run([sys.executable, tmp_path], capture_output=True, text=True, env=env) os.remove(tmp_path) assert result.returncode == 0, f"Script failed:\n{result.stderr}" stderr = result.stderr print(stderr) lines = stderr.splitlines() for mod in ["math", "io", "random"]: count = sum(1 for line in lines if f"importing: {mod}" in line) > assert count == 1, f"Expected 1 import log for '{mod}', found {count}" E AssertionError: Expected 1 import log for 'math', found 0 E assert 0 == 1 tests/test_utils_logcfg.py:78: AssertionError📌 Teardown phase
duration:
0.0004636235535144806outcome:
passed
-
-
📄 test_utils_shortcut.py
↳ Function: TestShortcutsSingleton
-
❌ Test 454
📌 Setup phase
duration:
0.00029037706553936005outcome:
passed📌 Call phase
duration:
0.00072488933801651outcome:
failedcrash:
path: /workspace/tligui_y/slic/tests/test_utils_shortcut.py lineno: 138 message: assert 3 == 2 + where 3 = len({'<lambda>': Shortcut "<lambda>", 'FuncA': Shortcut "FuncA", 'FuncB': Shortcut "FuncB"}) + where {'<lambda>': Shortcut "<lambda>", 'FuncA': Shortcut "FuncA", 'FuncB': Shortcut "FuncB"} = _get() + where _get = <lambda>: Shortcut "<lambda>"\nFuncA: Shortcut "FuncA"\nFuncB: Shortcut "FuncB"\n._gettraceback:
- path: tests/test_utils_shortcut.py lineno: 138 message: AssertionErrorlongrepr:
self = <test_utils_shortcut.TestShortcutsSingleton object at 0x7fb00a181160> def test_registration(self): # Test automatic registration @as_shortcut(name="FuncA") def func_a(): pass @as_shortcut(name="FuncB") def func_b(): pass > assert len(shortcuts._get()) == 2 E assert 3 == 2 E + where 3 = len({'<lambda>': Shortcut "<lambda>", 'FuncA': Shortcut "FuncA", 'FuncB': Shortcut "FuncB"}) E + where {'<lambda>': Shortcut "<lambda>", 'FuncA': Shortcut "FuncA", 'FuncB': Shortcut "FuncB"} = _get() E + where _get = <lambda>: Shortcut "<lambda>"\nFuncA: Shortcut "FuncA"\nFuncB: Shortcut "FuncB"\n._get tests/test_utils_shortcut.py:138: AssertionError📌 Teardown phase
duration:
0.0003366908058524132outcome:
passed
↳ Function: TestFullIntegration
-
❌ Test 459
📌 Setup phase
duration:
0.00031067151576280594outcome:
passed📌 Call phase
duration:
0.0006189234554767609outcome:
failedcrash:
path: /workspace/tligui_y/slic/tests/test_utils_shortcut.py lineno: 203 message: assert 5 == 2 + where 5 = len({'<lambda>': Shortcut "<lambda>", 'First': Shortcut "First", 'FuncA': Shortcut "FuncA", 'FuncB': Shortcut "FuncB", ...}) + where {'<lambda>': Shortcut "<lambda>", 'First': Shortcut "First", 'FuncA': Shortcut "FuncA", 'FuncB': Shortcut "FuncB", ...} = _get() + where _get = <lambda>: Shortcut "<lambda>"\nFirst: Shortcut "First"\nFuncA: Shortcut "FuncA"\nFuncB: Shortcut "FuncB"\nSecond: Shortcut "Second"\n._gettraceback:
- path: tests/test_utils_shortcut.py lineno: 203 message: AssertionErrorlongrepr:
self = <test_utils_shortcut.TestFullIntegration object at 0x7fb008bde7c0> def test_multiple_shortcuts(self): # Test multiple shortcuts coexistence @as_shortcut(name="First") def first(): return 1 @as_shortcut(name="Second") def second(): return 2 assert shortcuts["First"].func() == 1 assert shortcuts["Second"].func() == 2 > assert len(shortcuts._get()) == 2 E assert 5 == 2 E + where 5 = len({'<lambda>': Shortcut "<lambda>", 'First': Shortcut "First", 'FuncA': Shortcut "FuncA", 'FuncB': Shortcut "FuncB", ...}) E + where {'<lambda>': Shortcut "<lambda>", 'First': Shortcut "First", 'FuncA': Shortcut "FuncA", 'FuncB': Shortcut "FuncB", ...} = _get() E + where _get = <lambda>: Shortcut "<lambda>"\nFirst: Shortcut "First"\nFuncA: Shortcut "FuncA"\nFuncB: Shortcut "FuncB"\nSecond: Shortcut "Second"\n._get tests/test_utils_shortcut.py:203: AssertionError📌 Teardown phase
duration:
0.0002450477331876755outcome:
passed
-
-
📄 test_utils_tqdm_mod.py
↳ Function: test_float_alignment_in_bar
-
❌ Test 473
📌 Setup phase
duration:
0.00017560366541147232outcome:
passed📌 Call phase
duration:
0.0025042565539479256outcome:
failedcrash:
path: /workspace/tligui_y/slic/tests/test_utils_tqdm_mod.py lineno: 130 message: assert 3 == 1 + where 3 = len({50, 64, 65}) + where {50, 64, 65} = set([50, 64, 64, 65, 65])traceback:
- path: tests/test_utils_tqdm_mod.py lineno: 130 message: AssertionErrorstdout:
AlignBar: 0%| | 0/100.1 [00:00<?, ? Hz] AlignBar: 1%|1 | 1.3/100.1 [00:00<00:00, 57063.9 Hz] AlignBar: 12%|#2 | 12.5/100.1 [00:00<00:00, 77176.3 Hz] AlignBar: 100%|#########9| 99.9/100.1 [00:00<00:00, 413512.0 Hz] AlignBar: 100%|##########| 100.1/100.1 [00:00<00:00, 216015.3 Hz]longrepr:
def test_float_alignment_in_bar(): # Capture the tqdm output into a string buffer f = io.StringIO() with redirect_stdout(f): bar = tqdm_mod(total=100.12, desc="AlignBar", file=f, miniters=1, mininterval=0) bar.set(1.3333) bar.set(12.5) bar.set(99.89) bar.set(100.12) bar.close() # Extract lines containing the label lines = extract_lines(f.getvalue(), "AlignBar") # Expected formatted values using format_sizeof expected_values = [ "1.3/100.1", "12.5/100.1", "99.9/100.1", "100.1/100.1", ] # Extract the actual padded float/total strings from the full lines values = [] for line in lines: match = re.search(r"(\d{1,3}\.\d)/100\.1", line) if match: values.append(match.group(0)) # Ensure raw 100.12 never appears : format_sizeof must have truncated it assert all("100.12" not in line for line in lines), "Unrounded value '100.12' found in output!" # Check all expected values appear rounded as expected by format_sizeof for expected in expected_values: assert expected in values, f"Missing expected value: {expected}" # Check that all values are visually aligned, output with same length, to ensure that format_sizeof add the good number avec spaces print("\n") bar_segments = [] for line in lines: match = re.search(r".*?\]", line) if match: bar_segments.append(match.group(0)) print(match.group(0)) lengths = [len(seg) for seg in bar_segments] > assert len(set(lengths)) == 1 E assert 3 == 1 E + where 3 = len({50, 64, 65}) E + where {50, 64, 65} = set([50, 64, 64, 65, 65]) tests/test_utils_tqdm_mod.py:130: AssertionError📌 Teardown phase
duration:
0.0003147833049297333outcome:
passed
-
📚 Collected files
✅ (1 tests)
-
✅
- Outcome:
passed - result:
- nodeid: . type: Dir - Outcome:
✅ ci-reports (13 tests)
-
✅ ci-reports
- Outcome:
passed - result:
- nodeid: ci-reports/allure type: Dir - nodeid: ci-reports/junit type: Dir - nodeid: ci-reports/markdown type: Dir-
✅ ci-reports/allure
- Outcome:
passed - result:
- nodeid: ci-reports/allure/data type: Dir - nodeid: ci-reports/allure/export type: Dir - nodeid: ci-reports/allure/history type: Dir - nodeid: ci-reports/allure/plugin type: Dir - nodeid: ci-reports/allure/widgets type: Dir - Outcome:
-
✅ ci-reports/allure/data
- Outcome:
passed - result:
- nodeid: ci-reports/allure/data/test-cases type: Dir - Outcome:
-
✅ ci-reports/allure/data/test-cases
- Outcome:
passed - result:
[] - Outcome:
-
✅ ci-reports/allure/export
- Outcome:
passed - result:
[] - Outcome:
-
✅ ci-reports/allure/history
- Outcome:
passed - result:
[] - Outcome:
-
✅ ci-reports/allure/plugin
- Outcome:
passed - result:
- nodeid: ci-reports/allure/plugin/behaviors type: Dir - nodeid: ci-reports/allure/plugin/packages type: Dir - nodeid: ci-reports/allure/plugin/screen-diff type: Dir - Outcome:
-
✅ ci-reports/allure/plugin/behaviors
- Outcome:
passed - result:
[] - Outcome:
-
✅ ci-reports/allure/plugin/packages
- Outcome:
passed - result:
[] - Outcome:
-
✅ ci-reports/allure/plugin/screen-diff
- Outcome:
passed - result:
[] - Outcome:
-
✅ ci-reports/allure/widgets
- Outcome:
passed - result:
[] - Outcome:
-
✅ ci-reports/junit
- Outcome:
passed - result:
[] - Outcome:
-
✅ ci-reports/markdown
- Outcome:
passed - result:
[] - Outcome:
- Outcome:
✅ markdown (1 tests)
-
✅ markdown
- Outcome:
passed - result:
[] - Outcome:
✅ morbidissimo (6 tests)
-
✅ morbidissimo
- Outcome:
passed - result:
- nodeid: morbidissimo/morbidissimo type: Package-
✅ morbidissimo/morbidissimo
- Outcome:
passed - result:
- nodeid: morbidissimo/morbidissimo/modman type: Package - nodeid: morbidissimo/morbidissimo/morioc type: Package - Outcome:
-
✅ morbidissimo/morbidissimo/modman
- Outcome:
passed - result:
- nodeid: morbidissimo/morbidissimo/modman/scripts type: Dir - Outcome:
-
✅ morbidissimo/morbidissimo/modman/scripts
- Outcome:
passed - result:
[] - Outcome:
-
✅ morbidissimo/morbidissimo/morioc
- Outcome:
passed - result:
- nodeid: morbidissimo/morbidissimo/morioc/test_infer_type.py type: Module - Outcome:
-
✅ morbidissimo/morbidissimo/morioc/test_infer_type.py
- Outcome:
passed - result:
- nodeid: morbidissimo/morbidissimo/morioc/test_infer_type.py::test_it_type_str type: Function lineno: 14 - nodeid: morbidissimo/morbidissimo/morioc/test_infer_type.py::test_it_type_float type: Function lineno: 17 - nodeid: morbidissimo/morbidissimo/morioc/test_infer_type.py::test_it_type_int type: Function lineno: 20 - nodeid: morbidissimo/morbidissimo/morioc/test_infer_type.py::test_it_value_str type: Function lineno: 24 - nodeid: morbidissimo/morbidissimo/morioc/test_infer_type.py::test_it_value_long_str type: Function lineno: 27 - nodeid: morbidissimo/morbidissimo/morioc/test_infer_type.py::test_it_value_float type: Function lineno: 32 - nodeid: morbidissimo/morbidissimo/morioc/test_infer_type.py::test_it_value_int type: Function lineno: 35 - nodeid: morbidissimo/morbidissimo/morioc/test_infer_type.py::test_it_empty_value_str type: Function lineno: 39 - nodeid: morbidissimo/morbidissimo/morioc/test_infer_type.py::test_it_empty_value_float type: Function lineno: 42 - nodeid: morbidissimo/morbidissimo/morioc/test_infer_type.py::test_it_empty_value_int type: Function lineno: 45 - nodeid: morbidissimo/morbidissimo/morioc/test_infer_type.py::test_pstrue_str type: Function lineno: 49 - nodeid: morbidissimo/morbidissimo/morioc/test_infer_type.py::test_pstrue_float type: Function lineno: 52 - nodeid: morbidissimo/morbidissimo/morioc/test_infer_type.py::test_pstrue_int type: Function lineno: 55 - nodeid: morbidissimo/morbidissimo/morioc/test_infer_type.py::test_psfalse_str type: Function lineno: 59 - nodeid: morbidissimo/morbidissimo/morioc/test_infer_type.py::test_psfalse_float type: Function lineno: 62 - nodeid: morbidissimo/morbidissimo/morioc/test_infer_type.py::test_psfalse_int type: Function lineno: 65 - nodeid: morbidissimo/morbidissimo/morioc/test_infer_type.py::test_it_None type: Function lineno: 69 - nodeid: morbidissimo/morbidissimo/morioc/test_infer_type.py::test_it_True type: Function lineno: 72 - nodeid: morbidissimo/morbidissimo/morioc/test_infer_type.py::test_it_False type: Function lineno: 75 - nodeid: morbidissimo/morbidissimo/morioc/test_infer_type.py::test_it_nan type: Function lineno: 78 - nodeid: morbidissimo/morbidissimo/morioc/test_infer_type.py::test_it_np_nan type: Function lineno: 81 - nodeid: morbidissimo/morbidissimo/morioc/test_infer_type.py::test_it_np1D_int type: Function lineno: 85 - nodeid: morbidissimo/morbidissimo/morioc/test_infer_type.py::test_it_np2D_int type: Function lineno: 91 - nodeid: morbidissimo/morbidissimo/morioc/test_infer_type.py::test_it_np1D_float type: Function lineno: 99 - nodeid: morbidissimo/morbidissimo/morioc/test_infer_type.py::test_it_np2D_float type: Function lineno: 105 - nodeid: morbidissimo/morbidissimo/morioc/test_infer_type.py::test_it_np1D_bool type: Function lineno: 114 - nodeid: morbidissimo/morbidissimo/morioc/test_infer_type.py::test_it_np1D_object type: Function lineno: 119 - nodeid: morbidissimo/morbidissimo/morioc/test_infer_type.py::test_it_np_scalar_int type: Function lineno: 126 - nodeid: morbidissimo/morbidissimo/morioc/test_infer_type.py::test_it_np_scalar_float type: Function lineno: 131 - nodeid: morbidissimo/morbidissimo/morioc/test_infer_type.py::test_it_np_scalar_bool type: Function lineno: 136 - nodeid: morbidissimo/morbidissimo/morioc/test_infer_type.py::test_it_list type: Function lineno: 145 - nodeid: morbidissimo/morbidissimo/morioc/test_infer_type.py::test_it_tuple type: Function lineno: 150 - Outcome:
- Outcome:
✅ outputs (1 tests)
-
✅ outputs
- Outcome:
passed - result:
[] - Outcome:
✅ slic (30 tests)
-
✅ slic
- Outcome:
passed - result:
- nodeid: slic/core type: Package - nodeid: slic/devices type: Package - nodeid: slic/gui type: Package - nodeid: slic/utils type: Package-
✅ slic/core
- Outcome:
passed - result:
- nodeid: slic/core/acquisition type: Package - nodeid: slic/core/adjustable type: Package - nodeid: slic/core/condition type: Package - nodeid: slic/core/device type: Package - nodeid: slic/core/scanner type: Package - nodeid: slic/core/sensor type: Package - nodeid: slic/core/task type: Package - Outcome:
-
✅ slic/core/acquisition
- Outcome:
passed - result:
- nodeid: slic/core/acquisition/broker type: Package - Outcome:
-
✅ slic/core/acquisition/broker
- Outcome:
passed - result:
[] - Outcome:
-
✅ slic/core/adjustable
- Outcome:
passed - result:
[] - Outcome:
-
✅ slic/core/condition
- Outcome:
passed - result:
[] - Outcome:
-
✅ slic/core/device
- Outcome:
passed - result:
[] - Outcome:
-
✅ slic/core/scanner
- Outcome:
passed - result:
[] - Outcome:
-
✅ slic/core/sensor
- Outcome:
passed - result:
[] - Outcome:
-
✅ slic/core/task
- Outcome:
passed - result:
[] - Outcome:
-
✅ slic/devices
- Outcome:
passed - result:
- nodeid: slic/devices/cameras type: Package - nodeid: slic/devices/endstations type: Package - nodeid: slic/devices/general type: Package - nodeid: slic/devices/loptics type: Package - nodeid: slic/devices/timing type: Package - nodeid: slic/devices/xdiagnostics type: Package - nodeid: slic/devices/xoptics type: Package - Outcome:
-
✅ slic/devices/cameras
- Outcome:
passed - result:
[] - Outcome:
-
✅ slic/devices/endstations
- Outcome:
passed - result:
[] - Outcome:
-
✅ slic/devices/general
- Outcome:
passed - result:
- nodeid: slic/devices/general/detectors type: Package - nodeid: slic/devices/general/unused type: Dir - Outcome:
-
✅ slic/devices/general/detectors
- Outcome:
passed - result:
[] - Outcome:
-
✅ slic/devices/general/unused
- Outcome:
passed - result:
[] - Outcome:
-
✅ slic/devices/loptics
- Outcome:
passed - result:
[] - Outcome:
-
✅ slic/devices/timing
- Outcome:
passed - result:
- nodeid: slic/devices/timing/events type: Package - Outcome:
-
✅ slic/devices/timing/events
- Outcome:
passed - result:
[] - Outcome:
-
✅ slic/devices/xdiagnostics
- Outcome:
passed - result:
[] - Outcome:
-
✅ slic/devices/xoptics
- Outcome:
passed - result:
- nodeid: slic/devices/xoptics/slits type: Package - nodeid: slic/devices/xoptics/unused type: Dir - Outcome:
-
✅ slic/devices/xoptics/slits
- Outcome:
passed - result:
[] - Outcome:
-
✅ slic/devices/xoptics/unused
- Outcome:
passed - result:
[] - Outcome:
-
✅ slic/gui
- Outcome:
passed - result:
- nodeid: slic/gui/daqpanels type: Package - nodeid: slic/gui/widgets type: Package - Outcome:
-
✅ slic/gui/daqpanels
- Outcome:
passed - result:
[] - Outcome:
-
✅ slic/gui/widgets
- Outcome:
passed - result:
[] - Outcome:
-
✅ slic/utils
- Outcome:
passed - result:
- nodeid: slic/utils/ioc type: Package - nodeid: slic/utils/unused type: Dir - Outcome:
-
✅ slic/utils/ioc
- Outcome:
passed - result:
[] - Outcome:
-
✅ slic/utils/unused
- Outcome:
passed - result:
- nodeid: slic/utils/unused/xsim type: Package - Outcome:
-
✅ slic/utils/unused/xsim
- Outcome:
passed - result:
[] - Outcome:
- Outcome:
✅ temp-ci (1 tests)
-
✅ temp-ci
- Outcome:
passed - result:
[] - Outcome:
✅ test-ci (1 tests)
-
✅ test-ci
- Outcome:
passed - result:
[] - Outcome:
✅ tests (54 tests)
-
✅ tests
- Outcome:
passed - result:
- nodeid: tests/test_utils_argfwd.py type: Module - nodeid: tests/test_utils_ask_yes_no.py type: Module - nodeid: tests/test_utils_channels.py type: Module - nodeid: tests/test_utils_config.py type: Module - nodeid: tests/test_utils_cpint.py type: Module - nodeid: tests/test_utils_dbusnotify.py type: Module - nodeid: tests/test_utils_debug.py type: Module - nodeid: tests/test_utils_dictext.py type: Module - nodeid: tests/test_utils_dotdir.py type: Module - nodeid: tests/test_utils_duo.py type: Module - nodeid: tests/test_utils_elog.py type: Module - nodeid: tests/test_utils_eval.py type: Module - nodeid: tests/test_utils_exceptions.py type: Module - nodeid: tests/test_utils_get_adj.py type: Module - nodeid: tests/test_utils_hastepics.py type: Module - nodeid: tests/test_utils_ipy.py type: Module - nodeid: tests/test_utils_jsonext.py type: Module - nodeid: tests/test_utils_lazypv.py type: Module - nodeid: tests/test_utils_logcfg.py type: Module - nodeid: tests/test_utils_logign.py type: Module - nodeid: tests/test_utils_marker.py type: Module - nodeid: tests/test_utils_metaclasses.py type: Module - nodeid: tests/test_utils_namespace.py type: Module - nodeid: tests/test_utils_npy.py type: Module - nodeid: tests/test_utils_opmsg.py type: Module - nodeid: tests/test_utils_path.py type: Module - nodeid: tests/test_utils_picklio.py type: Module - nodeid: tests/test_utils_printing.py type: Module - nodeid: tests/test_utils_pv.py type: Module - nodeid: tests/test_utils_pvpreload.py type: Module - nodeid: tests/test_utils_pyepics.py type: Module - nodeid: tests/test_utils_rangebar.py type: Module - nodeid: tests/test_utils_readable.py type: Module - nodeid: tests/test_utils_registry.py type: Module - nodeid: tests/test_utils_reprate.py type: Module - nodeid: tests/test_utils_richcfg.py type: Module - nodeid: tests/test_utils_run_later.py type: Module - nodeid: tests/test_utils_sendmail.py type: Module - nodeid: tests/test_utils_sendsms.py type: Module - nodeid: tests/test_utils_shortcut.py type: Module - nodeid: tests/test_utils_snapshot.py type: Module - nodeid: tests/test_utils_termtitle.py type: Module - nodeid: tests/test_utils_tqdm_mod.py type: Module - nodeid: tests/test_utils_trinary.py type: Module - nodeid: tests/test_utils_typecast.py type: Module - nodeid: tests/test_utils_utils.py type: Module - nodeid: tests/test_utils_xrange.py type: Module-
✅ tests/test_utils_argfwd.py
- Outcome:
passed - result:
- nodeid: tests/test_utils_argfwd.py::test_split_at[lst0-2-expected0] type: Function lineno: 7 - nodeid: tests/test_utils_argfwd.py::test_split_at[lst1-1-expected1] type: Function lineno: 7 - nodeid: tests/test_utils_argfwd.py::test_split_at[lst2-0-expected2] type: Function lineno: 7 - nodeid: tests/test_utils_argfwd.py::test_merge_lists_unique[a0-b0-expected0] type: Function lineno: 16 - nodeid: tests/test_utils_argfwd.py::test_merge_lists_unique[a1-b1-expected1] type: Function lineno: 16 - nodeid: tests/test_utils_argfwd.py::test_merge_lists_unique[a2-b2-expected2] type: Function lineno: 16 - nodeid: tests/test_utils_argfwd.py::test_merge_dicts_unique[a0-b0-expected0] type: Function lineno: 25 - nodeid: tests/test_utils_argfwd.py::test_merge_dicts_unique[a1-b1-expected1] type: Function lineno: 25 - nodeid: tests/test_utils_argfwd.py::test_merge_dicts_unique[a2-b2-expected2] type: Function lineno: 25 - nodeid: tests/test_utils_argfwd.py::test_make_params_pos_basic[pos0-expected_names0] type: Function lineno: 34 - nodeid: tests/test_utils_argfwd.py::test_make_params_pos_basic[pos1-expected_names1] type: Function lineno: 34 - nodeid: tests/test_utils_argfwd.py::test_make_params_pos_basic[pos2-expected_names2] type: Function lineno: 34 - nodeid: tests/test_utils_argfwd.py::test_make_params_kw_basic[kw0-expected_keys0-expected_defaults0] type: Function lineno: 47 - nodeid: tests/test_utils_argfwd.py::test_make_params_kw_basic[kw1-expected_keys1-expected_defaults1] type: Function lineno: 47 - nodeid: tests/test_utils_argfwd.py::test_make_params_kw_basic[kw2-expected_keys2-expected_defaults2] type: Function lineno: 47 - nodeid: tests/test_utils_argfwd.py::test_make_signature_parametrized[pos0-kw0-(x, y, z=3)] type: Function lineno: 59 - nodeid: tests/test_utils_argfwd.py::test_make_signature_parametrized[pos1-kw1-(a, b=1, c=2)] type: Function lineno: 59 - nodeid: tests/test_utils_argfwd.py::test_make_signature_parametrized[pos2-kw2-(flag=False)] type: Function lineno: 59 - nodeid: tests/test_utils_argfwd.py::test_get_args_parametrized[<lambda>-expected_pos0-expected_kw0] type: Function lineno: 70 - nodeid: tests/test_utils_argfwd.py::test_get_args_parametrized[<lambda>-expected_pos1-expected_kw1] type: Function lineno: 70 - nodeid: tests/test_utils_argfwd.py::test_get_args_parametrized[<lambda>-expected_pos2-expected_kw2] type: Function lineno: 70 - nodeid: tests/test_utils_argfwd.py::test_signature_visible[wrap_all-(a, b, d=30, c=10)] type: Function lineno: 103 - nodeid: tests/test_utils_argfwd.py::test_signature_visible[wrap_skip-(a, b, c=10, d=20)] type: Function lineno: 103 - nodeid: tests/test_utils_argfwd.py::test_signature_visible[wrap_ignore_all-(x, y, c=10, d=20)] type: Function lineno: 103 - nodeid: tests/test_utils_argfwd.py::test_wrapper_behavior[wrap_all-args0-kwargs0-36] type: Function lineno: 111 - nodeid: tests/test_utils_argfwd.py::test_wrapper_behavior[wrap_all-args1-kwargs1-11] type: Function lineno: 111 - nodeid: tests/test_utils_argfwd.py::test_wrapper_behavior[wrap_skip-args2-kwargs2-10] type: Function lineno: 111 - nodeid: tests/test_utils_argfwd.py::test_wrapper_behavior[wrap_ignore_all-args3-kwargs3-10] type: Function lineno: 111 - Outcome:
-
✅ tests/test_utils_ask_yes_no.py
- Outcome:
passed - result:
- nodeid: tests/test_utils_ask_yes_no.py::test_ask_yes_no[None-y-True-Question? [y/n] ] type: Function lineno: 8 - nodeid: tests/test_utils_ask_yes_no.py::test_ask_yes_no[None-yes-True-Question? [y/n] ] type: Function lineno: 8 - nodeid: tests/test_utils_ask_yes_no.py::test_ask_yes_no[None-n-False-Question? [y/n] ] type: Function lineno: 8 - nodeid: tests/test_utils_ask_yes_no.py::test_ask_yes_no[None-no-False-Question? [y/n] ] type: Function lineno: 8 - nodeid: tests/test_utils_ask_yes_no.py::test_ask_yes_no[None-user_input4-True-Question? [y/n] ] type: Function lineno: 8 - nodeid: tests/test_utils_ask_yes_no.py::test_ask_yes_no[None-user_input5-False-Question? [y/n] ] type: Function lineno: 8 - nodeid: tests/test_utils_ask_yes_no.py::test_ask_yes_no[None-user_input6-True-Question? [y/n] ] type: Function lineno: 8 - nodeid: tests/test_utils_ask_yes_no.py::test_ask_yes_no[y-y-True-Question? [Y/n] ] type: Function lineno: 8 - nodeid: tests/test_utils_ask_yes_no.py::test_ask_yes_no[y-n-False-Question? [Y/n] ] type: Function lineno: 8 - nodeid: tests/test_utils_ask_yes_no.py::test_ask_yes_no[y--True-Question? [Y/n] ] type: Function lineno: 8 - nodeid: tests/test_utils_ask_yes_no.py::test_ask_yes_no[n-y-True-Question? [y/N] ] type: Function lineno: 8 - nodeid: tests/test_utils_ask_yes_no.py::test_ask_yes_no[n-n-False-Question? [y/N] ] type: Function lineno: 8 - nodeid: tests/test_utils_ask_yes_no.py::test_ask_yes_no[n--False-Question? [y/N] ] type: Function lineno: 8 - nodeid: tests/test_utils_ask_yes_no.py::test_ask_yes_no_ctrl_c[None-KeyboardInterrupt-False-n] type: Function lineno: 46 - nodeid: tests/test_utils_ask_yes_no.py::test_ask_yes_no_ctrl_c[None-KeyboardInterrupt-True-y] type: Function lineno: 46 - nodeid: tests/test_utils_ask_yes_no.py::test_ask_yes_no_ctrl_c[y-KeyboardInterrupt-False-n] type: Function lineno: 46 - nodeid: tests/test_utils_ask_yes_no.py::test_ask_yes_no_ctrl_c[y-KeyboardInterrupt-True-y] type: Function lineno: 46 - nodeid: tests/test_utils_ask_yes_no.py::test_ask_yes_no_ctrl_c[n-KeyboardInterrupt-False-n] type: Function lineno: 46 - nodeid: tests/test_utils_ask_yes_no.py::test_ask_yes_no_ctrl_c[None-user_input5-False-n] type: Function lineno: 46 - nodeid: tests/test_utils_ask_yes_no.py::test_ask_yes_no_ctrl_c[None-user_input6-True-y] type: Function lineno: 46 - nodeid: tests/test_utils_ask_yes_no.py::test_ask_yes_no_ctrl_c[None-user_input7-False-None] type: Function lineno: 46 - nodeid: tests/test_utils_ask_yes_no.py::test_ask_yes_no_ctrl_c[n-user_input8-False-None] type: Function lineno: 46 - nodeid: tests/test_utils_ask_yes_no.py::test_ask_yes_no_ctrl_c[n-user_input9-False-Invalid] type: Function lineno: 46 - nodeid: tests/test_utils_ask_yes_no.py::test_ask_yes_no_ctrl_d[None-EOFError-False-n] type: Function lineno: 79 - nodeid: tests/test_utils_ask_yes_no.py::test_ask_yes_no_ctrl_d[None-EOFError-True-y] type: Function lineno: 79 - nodeid: tests/test_utils_ask_yes_no.py::test_ask_yes_no_ctrl_d[y-EOFError-True-y] type: Function lineno: 79 - nodeid: tests/test_utils_ask_yes_no.py::test_ask_yes_no_ctrl_d[n-EOFError-True-y] type: Function lineno: 79 - nodeid: tests/test_utils_ask_yes_no.py::test_ask_yes_no_ctrl_d[n-EOFError-False-n] type: Function lineno: 79 - nodeid: tests/test_utils_ask_yes_no.py::test_ask_yes_no_ctrl_d[None-user_input5-True-y] type: Function lineno: 79 - nodeid: tests/test_utils_ask_yes_no.py::test_ask_yes_no_ctrl_d[None-user_input6-False-n] type: Function lineno: 79 - nodeid: tests/test_utils_ask_yes_no.py::test_ask_yes_no_ctrl_d[y-EOFError-True-None] type: Function lineno: 79 - nodeid: tests/test_utils_ask_yes_no.py::test_ask_yes_no_ctrl_d[n-EOFError-False-None] type: Function lineno: 79 - nodeid: tests/test_utils_ask_yes_no.py::test_ask_yes_no_ctrl_d[None-user_input9-True-None] type: Function lineno: 79 - nodeid: tests/test_utils_ask_yes_no.py::test_ask_yes_no_ctrl_d[n-user_input10-False-None] type: Function lineno: 79 - nodeid: tests/test_utils_ask_yes_no.py::test_ask_yes_no_ctrl_d[None-user_input11-True-None] type: Function lineno: 79 - nodeid: tests/test_utils_ask_yes_no.py::test_ask_yes_no_ctrl_d[None-user_input12-False-n] type: Function lineno: 79 - nodeid: tests/test_utils_ask_yes_no.py::test_ask_yes_no_ctrl_d[None-user_input13-True-y] type: Function lineno: 79 - nodeid: tests/test_utils_ask_yes_no.py::test_ask_yes_no_mixed_sequences[None-invalid-None-user_input0-False] type: Function lineno: 117 - nodeid: tests/test_utils_ask_yes_no.py::test_ask_yes_no_mixed_sequences[None-None-notananswer-user_input1-True] type: Function lineno: 117 - nodeid: tests/test_utils_ask_yes_no.py::test_ask_yes_no_mixed_sequences[None-n-nop-user_input2-False] type: Function lineno: 117 - Outcome:
-
✅ tests/test_utils_channels.py
- Outcome:
passed - result:
- nodeid: tests/test_utils_channels.py::test_load_channels_and_channels_class_with_professional_names type: Function lineno: 42 - Outcome:
-
✅ tests/test_utils_config.py
- Outcome:
passed - result:
- nodeid: tests/test_utils_config.py::test_config_with_nested_and_list_data type: Function lineno: 15 - nodeid: tests/test_utils_config.py::test_config_with_strange_and_edge_keys type: Function lineno: 73 - Outcome:
-
✅ tests/test_utils_cpint.py
- Outcome:
passed - result:
- nodeid: tests/test_utils_cpint.py::test_load_color_variants_all_keys_and_types[red] type: Function lineno: 9 - nodeid: tests/test_utils_cpint.py::test_load_color_variants_all_keys_and_types[blue] type: Function lineno: 9 - nodeid: tests/test_utils_cpint.py::test_load_color_variants_all_keys_and_types[yellow] type: Function lineno: 9 - nodeid: tests/test_utils_cpint.py::test_load_color_variants_all_keys_and_types[green] type: Function lineno: 9 - nodeid: tests/test_utils_cpint.py::test_load_color_variants_all_keys_and_types[cyan] type: Function lineno: 9 - nodeid: tests/test_utils_cpint.py::test_load_color_variants_all_keys_and_types[magenta] type: Function lineno: 9 - nodeid: tests/test_utils_cpint.py::test_load_color_variants_all_keys_and_types[white] type: Function lineno: 9 - nodeid: tests/test_utils_cpint.py::test_load_color_variants_all_keys_and_types[black] type: Function lineno: 9 - nodeid: tests/test_utils_cpint.py::test_cprint_all_cases_fancy[objects0-color_spec0- | -['Fancy', 'list'] | {'a': 7} | None-None] type: Function lineno: 24 - nodeid: tests/test_utils_cpint.py::test_cprint_all_cases_fancy[objects1-color_spec1- - -{'k': [1, 2]} - 99 - ['X', ['Y']]-None] type: Function lineno: 24 - nodeid: tests/test_utils_cpint.py::test_cprint_all_cases_fancy[objects2-color_spec2- / -[] / {} / End-None] type: Function lineno: 24 - nodeid: tests/test_utils_cpint.py::test_cprint_all_cases_fancy[objects3-color_spec3-;-['', [3, 4]];done;0-None] type: Function lineno: 24 - nodeid: tests/test_utils_cpint.py::test_cprint_all_cases_fancy[objects4-color_spec4-::-['alpha', None]::['beta', {}]::stop-None] type: Function lineno: 24 - nodeid: tests/test_utils_cpint.py::test_cprint_all_cases_fancy[objects5-color_spec5- ... -['deep', ['deeper', ['deepest']]] ... X-None] type: Function lineno: 24 - nodeid: tests/test_utils_cpint.py::test_cprint_all_cases_fancy[objects6-color_spec6- // -{'dict': {'nested': [4, 5]}} // [True, False] // 6.28-None] type: Function lineno: 24 - nodeid: tests/test_utils_cpint.py::test_cprint_all_cases_fancy[objects7-color_spec7-==-['A', ['B']]==string==C-None] type: Function lineno: 24 - nodeid: tests/test_utils_cpint.py::test_cprint_all_cases_fancy[objects8-color_spec8- ++ -['Test', None, []] ++ {'v': 0}-None] type: Function lineno: 24 - nodeid: tests/test_utils_cpint.py::test_cprint_all_cases_fancy[objects9-None-;-['no', 'color'];plain-None] type: Function lineno: 24 - nodeid: tests/test_utils_cpint.py::test_cprint_all_cases_fancy[objects10-None- | -['simple'] | | 12-None] type: Function lineno: 24 - nodeid: tests/test_utils_cpint.py::test_cprint_all_cases_fancy[objects11-None- : -[['very', 'deep']] : {'ok': True}-None] type: Function lineno: 24 - nodeid: tests/test_utils_cpint.py::test_cprint_all_cases_fancy[objects12-color_spec12-|-['fail', 'color']|123-ValueError] type: Function lineno: 24 - nodeid: tests/test_utils_cpint.py::test_cprint_all_cases_fancy[objects13-color_spec13- * -['error'] * {}-ValueError] type: Function lineno: 24 - nodeid: tests/test_utils_cpint.py::test_cprint_all_cases_fancy[objects14-color_spec14-//-['nope']//['bad']-ValueError] type: Function lineno: 24 - nodeid: tests/test_utils_cpint.py::test_cprint_all_cases_fancy[objects15-color_spec15----wrong--base-ValueError] type: Function lineno: 24 - Outcome:
-
✅ tests/test_utils_dbusnotify.py
- Outcome:
passed - result:
- nodeid: tests/test_utils_dbusnotify.py::DBusTestCase type: UnitTestCase - nodeid: tests/test_utils_dbusnotify.py::test_notify_create type: Function lineno: 17 - nodeid: tests/test_utils_dbusnotify.py::test_notify_update type: Function lineno: 28 - nodeid: tests/test_utils_dbusnotify.py::test_get_server_info type: Function lineno: 37 - nodeid: tests/test_utils_dbusnotify.py::test_get_capabilities type: Function lineno: 48 - nodeid: tests/test_utils_dbusnotify.py::test_notify_and_close type: Function lineno: 63 - nodeid: tests/test_utils_dbusnotify.py::test_notify_invalid_value type: Function lineno: 73 - nodeid: tests/test_utils_dbusnotify.py::test_convert_dbus_strings type: Function lineno: 79 - Outcome:
-
✅ tests/test_utils_dbusnotify.py::DBusTestCase
- Outcome:
passed - result:
[] - Outcome:
-
✅ tests/test_utils_debug.py
- Outcome:
passed - result:
- nodeid: tests/test_utils_debug.py::test_traceable[A-entry0-creating: A(10, 20)] type: Function lineno: 21 - nodeid: tests/test_utils_debug.py::test_traceable[A-entry1-creating: A(10, 20, e=100)] type: Function lineno: 21 - nodeid: tests/test_utils_debug.py::test_traceable[A-entry2-creating: A('foo', [1, 2, 3], flag=True, data={'x': 9})] type: Function lineno: 21 - nodeid: tests/test_utils_debug.py::test_traceable[A-entry3-creating: A(CustomObj(big), [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], name='test', meta='yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy...)] type: Function lineno: 21 - nodeid: tests/test_utils_debug.py::test_traceable[A-entry4-creating: A('AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA..., [0, 0, 0, 0, 0])] type: Function lineno: 21 - nodeid: tests/test_utils_debug.py::test_short_repr[abc-10-'abc'] type: Function lineno: 52 - nodeid: tests/test_utils_debug.py::test_short_repr[aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa-10-'aaaaaaaaaa...] type: Function lineno: 52 - nodeid: tests/test_utils_debug.py::test_short_repr[12345-10-12345] type: Function lineno: 52 - nodeid: tests/test_utils_debug.py::test_short_repr[value3-15-[0, 0, 0, 0, 0,...] type: Function lineno: 52 - nodeid: tests/test_utils_debug.py::test_short_repr[None-10-None] type: Function lineno: 52 - nodeid: tests/test_utils_debug.py::test_short_repr[value5-20-Obj(xxxxxxxxxxxxxxxxx...] type: Function lineno: 52 - Outcome:
-
✅ tests/test_utils_dictext.py
- Outcome:
passed - result:
- nodeid: tests/test_utils_dictext.py::test_attrdict_getattr[data0-x-1] type: Function lineno: 12 - nodeid: tests/test_utils_dictext.py::test_attrdict_getattr[data1-world-ok] type: Function lineno: 12 - nodeid: tests/test_utils_dictext.py::test_attrdict_getattr[data2-outer-expected2] type: Function lineno: 12 - nodeid: tests/test_utils_dictext.py::test_attrdict_setattr[initial0-nouveau-123] type: Function lineno: 26 - nodeid: tests/test_utils_dictext.py::test_attrdict_setattr[initial1-b-valeur] type: Function lineno: 26 - nodeid: tests/test_utils_dictext.py::test_attrdict_delattr[initial0-a-expected_keys0] type: Function lineno: 40 - nodeid: tests/test_utils_dictext.py::test_attrdict_delattr[initial1-k-expected_keys1] type: Function lineno: 40 - nodeid: tests/test_utils_dictext.py::test_attrdict_dir[data0-expected_keys0] type: Function lineno: 55 - nodeid: tests/test_utils_dictext.py::test_attrdict_dir[data1-expected_keys1] type: Function lineno: 55 - nodeid: tests/test_utils_dictext.py::test_attrdict_getattr_and_missing[data0-x-1-None] type: Function lineno: 69 - nodeid: tests/test_utils_dictext.py::test_attrdict_getattr_and_missing[data1-missing-None-'MyDict' object has no attribute 'missing'] type: Function lineno: 69 - nodeid: tests/test_utils_dictext.py::test_dictupdatemixin_init_and_update[init_kwargs0-None-kwargs0-expected0] type: Function lineno: 90 - nodeid: tests/test_utils_dictext.py::test_dictupdatemixin_init_and_update[init_kwargs1-other1-kwargs1-expected1] type: Function lineno: 90 - nodeid: tests/test_utils_dictext.py::test_dictupdatemixin_init_and_update[init_kwargs2-other2-kwargs2-expected2] type: Function lineno: 90 - nodeid: tests/test_utils_dictext.py::test_dictupdatemixin_init_and_update[init_kwargs3-None-kwargs3-expected3] type: Function lineno: 90 - nodeid: tests/test_utils_dictext.py::test_dictupdatemixin_init_and_update[init_kwargs4-other4-kwargs4-expected4] type: Function lineno: 90 - nodeid: tests/test_utils_dictext.py::test_dictupdatemixin_init_and_update[init_kwargs5-other5-kwargs5-expected5] type: Function lineno: 90 - Outcome:
-
✅ tests/test_utils_dotdir.py
- Outcome:
passed - result:
- nodeid: tests/test_utils_dotdir.py::test_dotdir_creation_and_base_exists type: Function lineno: 14 - nodeid: tests/test_utils_dotdir.py::test_dotdir_repr_returns_path_str type: Function lineno: 28 - nodeid: tests/test_utils_dotdir.py::test_dotdir_call type: Function lineno: 35 - Outcome:
-
✅ tests/test_utils_duo.py
- Outcome:
passed - result:
- nodeid: tests/test_utils_duo.py::TestPickledDictReal type: Class - nodeid: tests/test_utils_duo.py::TestSecrets type: Class - nodeid: tests/test_utils_duo.py::test_get_pgroup_raises_if_no_key type: Function lineno: 147 - nodeid: tests/test_utils_duo.py::test_get_pgroup_info_with_props_same_name_and_pi type: Function lineno: 154 - nodeid: tests/test_utils_duo.py::test_get_pgroup_info_with_props_different_pi type: Function lineno: 181 - nodeid: tests/test_utils_duo.py::test_get_pgroup_info_without_props_with_owner type: Function lineno: 208 - nodeid: tests/test_utils_duo.py::test_get_pgroup_info_without_props_no_owner type: Function lineno: 229 - nodeid: tests/test_utils_duo.py::test_get_pgroup_info_mock type: Function lineno: 249 - Outcome:
-
✅ tests/test_utils_duo.py::TestPickledDictReal
- Outcome:
passed - result:
- nodeid: tests/test_utils_duo.py::TestPickledDictReal::test_set_get type: Function lineno: 17 - nodeid: tests/test_utils_duo.py::TestPickledDictReal::test_load type: Function lineno: 52 - Outcome:
-
✅ tests/test_utils_duo.py::TestSecrets
- Outcome:
passed - result:
- nodeid: tests/test_utils_duo.py::TestSecrets::test_secret_workflow type: Function lineno: 96 - nodeid: tests/test_utils_duo.py::TestSecrets::test_multiple_secrets type: Function lineno: 113 - nodeid: tests/test_utils_duo.py::TestSecrets::test_keyboard_interrupt type: Function lineno: 125 - Outcome:
-
✅ tests/test_utils_elog.py
- Outcome:
passed - result:
- nodeid: tests/test_utils_elog.py::test_get_default_elog_instance_with_direct_password_and_real_check type: Function lineno: 12 - nodeid: tests/test_utils_elog.py::test_get_default_elog_instance_with_wrong_password_and_real_check type: Function lineno: 31 - nodeid: tests/test_utils_elog.py::test_get_default_elog_instance_asks_password type: Function lineno: 42 - nodeid: tests/test_utils_elog.py::test_get_default_elog_with_path_home type: Function lineno: 64 - nodeid: tests/test_utils_elog.py::test_screenshot type: Function lineno: 98 - Outcome:
-
✅ tests/test_utils_eval.py
- Outcome:
passed - result:
- nodeid: tests/test_utils_eval.py::test_arithmetic_eval_valid[1 + 2-3] type: Function lineno: 7 - nodeid: tests/test_utils_eval.py::test_arithmetic_eval_valid[4 - 2-2] type: Function lineno: 7 - nodeid: tests/test_utils_eval.py::test_arithmetic_eval_valid[3 * 5-15] type: Function lineno: 7 - nodeid: tests/test_utils_eval.py::test_arithmetic_eval_valid[10 / 2-5.0] type: Function lineno: 7 - nodeid: tests/test_utils_eval.py::test_arithmetic_eval_valid[10 % 3-1] type: Function lineno: 7 - nodeid: tests/test_utils_eval.py::test_arithmetic_eval_valid[-5--5] type: Function lineno: 7 - nodeid: tests/test_utils_eval.py::test_arithmetic_eval_valid[+7-7] type: Function lineno: 7 - nodeid: tests/test_utils_eval.py::test_arithmetic_eval_valid[1 + 2 * 3-7] type: Function lineno: 7 - nodeid: tests/test_utils_eval.py::test_arithmetic_eval_valid[(1 + 2) * 3-9] type: Function lineno: 7 - nodeid: tests/test_utils_eval.py::test_arithmetic_eval_valid[-(-3)-3] type: Function lineno: 7 - nodeid: tests/test_utils_eval.py::test_arithmetic_eval_valid[-2 + 4 * 2-6] type: Function lineno: 7 - nodeid: tests/test_utils_eval.py::test_arithmetic_eval_valid[(4 + 5) * (6 - 1)-45] type: Function lineno: 7 - nodeid: tests/test_utils_eval.py::test_arithmetic_eval_valid[(((3)))-3] type: Function lineno: 7 - nodeid: tests/test_utils_eval.py::test_arithmetic_eval_valid[-(-(-2))--2] type: Function lineno: 7 - nodeid: tests/test_utils_eval.py::test_arithmetic_eval_valid[3 + +4-7] type: Function lineno: 7 - nodeid: tests/test_utils_eval.py::test_arithmetic_eval_valid[3 + -4--1] type: Function lineno: 7 - nodeid: tests/test_utils_eval.py::test_arithmetic_eval_valid[True + 1-2] type: Function lineno: 7 - nodeid: tests/test_utils_eval.py::test_arithmetic_eval_valid['string'-string] type: Function lineno: 7 - nodeid: tests/test_utils_eval.py::test_arithmetic_eval_valid[1e1000 * 1e1000-inf] type: Function lineno: 7 - nodeid: tests/test_utils_eval.py::test_arithmetic_eval_valid['a' + 'b'-ab] type: Function lineno: 7 - nodeid: tests/test_utils_eval.py::test_arithmetic_eval_raises_with_message[2 ** 3-Unsupported BinOp Pow] type: Function lineno: 33 - nodeid: tests/test_utils_eval.py::test_arithmetic_eval_raises_with_message[3 << 1-Unsupported BinOp LShift] type: Function lineno: 33 - nodeid: tests/test_utils_eval.py::test_arithmetic_eval_raises_with_message[1 < 2-Unsupported node type Compare] type: Function lineno: 33 - nodeid: tests/test_utils_eval.py::test_arithmetic_eval_raises_with_message[abs(3)-Unsupported node type Call] type: Function lineno: 33 - nodeid: tests/test_utils_eval.py::test_arithmetic_eval_raises_with_message[a + 2-Unsupported node type Name] type: Function lineno: 33 - nodeid: tests/test_utils_eval.py::test_arithmetic_eval_raises_with_message[string-Unsupported node type Name] type: Function lineno: 33 - nodeid: tests/test_utils_eval.py::test_arithmetic_eval_raises_with_message[[1, 2] + [3]-Unsupported node type List] type: Function lineno: 33 - nodeid: tests/test_utils_eval.py::test_arithmetic_eval_raises_with_message[{1: 2}-Unsupported node type Dict] type: Function lineno: 33 - nodeid: tests/test_utils_eval.py::test_arithmetic_eval_runtime_errors[1 / 0-ZeroDivisionError] type: Function lineno: 52 - nodeid: tests/test_utils_eval.py::test_arithmetic_eval_runtime_errors[10 % 0-ZeroDivisionError] type: Function lineno: 52 - nodeid: tests/test_utils_eval.py::test_forgiving_eval[1 + 2-3] type: Function lineno: 61 - nodeid: tests/test_utils_eval.py::test_forgiving_eval[bad + 2-bad + 2] type: Function lineno: 61 - nodeid: tests/test_utils_eval.py::test_forgiving_eval[1 / 0-1 / 0] type: Function lineno: 61 - nodeid: tests/test_utils_eval.py::test_forgiving_eval[2 ** 10-2 ** 10] type: Function lineno: 61 - nodeid: tests/test_utils_eval.py::test_defaulting_eval[3 * 4-0-12] type: Function lineno: 71 - nodeid: tests/test_utils_eval.py::test_defaulting_eval[invalid + 1-99-99] type: Function lineno: 71 - nodeid: tests/test_utils_eval.py::test_defaulting_eval[1 / 0--1--1] type: Function lineno: 71 - nodeid: tests/test_utils_eval.py::test_defaulting_eval[2 ** 10-42-42] type: Function lineno: 71 - Outcome:
-
✅ tests/test_utils_exceptions.py
- Outcome:
passed - result:
- nodeid: tests/test_utils_exceptions.py::test_chained_exception_various[cause_key_error-High-level task failed\ncaused by KeyError: 'missing'] type: Function lineno: 28 - nodeid: tests/test_utils_exceptions.py::test_chained_exception_various[cause_index_error-High-level task failed\ncaused by IndexError: list index out of range] type: Function lineno: 28 - nodeid: tests/test_utils_exceptions.py::test_chained_exception_various[cause_zero_division-High-level task failed\ncaused by ZeroDivisionError: division by zero] type: Function lineno: 28 - nodeid: tests/test_utils_exceptions.py::test_chained_exception_various[cause_value_error-High-level task failed\ncaused by ValueError: invalid literal for int() with base 10: 'not_a_number'] type: Function lineno: 28 - nodeid: tests/test_utils_exceptions.py::test_chained_exception_various[cause_type_error-High-level task failed\ncaused by TypeError: can only concatenate str (not "int") to str] type: Function lineno: 28 - nodeid: tests/test_utils_exceptions.py::test_printed_exception[cause_key_error-KeyError: 'missing'] type: Function lineno: 60 - nodeid: tests/test_utils_exceptions.py::test_printed_exception[cause_index_error-IndexError: list index out of range] type: Function lineno: 60 - nodeid: tests/test_utils_exceptions.py::test_printed_exception[cause_zero_division-ZeroDivisionError: division by zero] type: Function lineno: 60 - nodeid: tests/test_utils_exceptions.py::test_printed_exception[cause_value_error-ValueError: invalid literal for int() with base 10: 'not_a_number'] type: Function lineno: 60 - nodeid: tests/test_utils_exceptions.py::test_printed_exception[cause_type_error-TypeError: can only concatenate str (not "int") to str] type: Function lineno: 60 - Outcome:
-
✅ tests/test_utils_get_adj.py
- Outcome:
passed - result:
- nodeid: tests/test_utils_get_adj.py::test_get_adj_success type: Function lineno: 23 - nodeid: tests/test_utils_get_adj.py::test_get_adj_not_found type: Function lineno: 27 - nodeid: tests/test_utils_get_adj.py::test_ensure_adjs_mixed type: Function lineno: 31 - nodeid: tests/test_utils_get_adj.py::test_get_adjs_filter type: Function lineno: 37 - Outcome:
-
✅ tests/test_utils_hastepics.py
- Outcome:
passed - result:
[] - Outcome:
-
✅ tests/test_utils_ipy.py
- Outcome:
passed - result:
- nodeid: tests/test_utils_ipy.py::test_devices_repr_fallback_and_ignore type: Function lineno: 19 - Outcome:
-
✅ tests/test_utils_jsonext.py
- Outcome:
passed - result:
- nodeid: tests/test_utils_jsonext.py::test_json_validate_save_load[input_obj0-expected0] type: Function lineno: 7 - nodeid: tests/test_utils_jsonext.py::test_json_validate_save_load[input_obj1-42] type: Function lineno: 7 - nodeid: tests/test_utils_jsonext.py::test_json_validate_save_load[(1-1j)-expected2] type: Function lineno: 7 - nodeid: tests/test_utils_jsonext.py::test_json_validate_save_load[input_obj3-/tmp/file.txt] type: Function lineno: 7 - nodeid: tests/test_utils_jsonext.py::test_json_validate_save_load[input_obj4-expected4] type: Function lineno: 7 - nodeid: tests/test_utils_jsonext.py::test_json_validate_save_load[input_obj5-expected5] type: Function lineno: 7 - nodeid: tests/test_utils_jsonext.py::test_json_validate_save_load[input_obj6-expected6] type: Function lineno: 7 - nodeid: tests/test_utils_jsonext.py::test_json_validate_save_load[input_obj7-expected7] type: Function lineno: 7 - Outcome:
-
✅ tests/test_utils_lazypv.py
- Outcome:
passed - result:
- nodeid: tests/test_utils_lazypv.py::test_getattr type: Function lineno: 7 - Outcome:
-
✅ tests/test_utils_logcfg.py
- Outcome:
passed - result:
- nodeid: tests/test_utils_logcfg.py::test_custom_log_outputs[LONG-<lambda>-This is a LONG message] type: Function lineno: 21 - nodeid: tests/test_utils_logcfg.py::test_custom_log_outputs[ENLARGE-<lambda>-Please ENLARGE this!] type: Function lineno: 21 - nodeid: tests/test_utils_logcfg.py::test_import_logging_once_per_module type: Function lineno: 51 - Outcome:
-
✅ tests/test_utils_logign.py
- Outcome:
passed - result:
- nodeid: tests/test_utils_logign.py::test_ignore_log_msg_behavior[WARNING-This should be ignored-This should appear] type: Function lineno: 9 - nodeid: tests/test_utils_logign.py::test_ignore_log_msg_behavior[ENLARGE-ENLARGE this-Keep this ENLARGE] type: Function lineno: 9 - nodeid: tests/test_utils_logign.py::test_ignore_only_by_level type: Function lineno: 42 - nodeid: tests/test_utils_logign.py::test_ignore_only_by_msg type: Function lineno: 64 - nodeid: tests/test_utils_logign.py::test_filter_removed_after_context type: Function lineno: 86 - Outcome:
-
✅ tests/test_utils_marker.py
- Outcome:
passed - result:
- nodeid: tests/test_utils_marker.py::test_format_value_with_units type: Function lineno: 30 - nodeid: tests/test_utils_marker.py::test_format_value_without_units type: Function lineno: 33 - nodeid: tests/test_utils_marker.py::test_marker_name_default type: Function lineno: 39 - nodeid: tests/test_utils_marker.py::test_marker_name_custom type: Function lineno: 44 - nodeid: tests/test_utils_marker.py::test_marker_repr_format type: Function lineno: 49 - nodeid: tests/test_utils_marker.py::test_marker_update_changes_value type: Function lineno: 56 - nodeid: tests/test_utils_marker.py::test_marker_update_with_explicit_value type: Function lineno: 63 - nodeid: tests/test_utils_marker.py::test_marker_goto_sets_value_and_returns_result type: Function lineno: 69 - nodeid: tests/test_utils_marker.py::test_marker_call_is_alias_of_goto type: Function lineno: 77 - nodeid: tests/test_utils_marker.py::test_markers_register_and_access type: Function lineno: 87 - nodeid: tests/test_utils_marker.py::test_markers_repr_contains_all type: Function lineno: 103 - nodeid: tests/test_utils_marker.py::test_marker_registry_dict_is_printable_dict type: Function lineno: 114 - nodeid: tests/test_utils_marker.py::test_markers_getitem_invalid_key_raises type: Function lineno: 122 - Outcome:
-
✅ tests/test_utils_metaclasses.py
- Outcome:
passed - result:
- nodeid: tests/test_utils_metaclasses.py::test_combine_classes_combines_methods type: Function lineno: 14 - nodeid: tests/test_utils_metaclasses.py::test_registryabc_combines_registrymeta_and_abcmeta type: Function lineno: 25 - Outcome:
-
✅ tests/test_utils_namespace.py
- Outcome:
passed - result:
- nodeid: tests/test_utils_namespace.py::test_namespace_pretty_repr_mixed_and_nested type: Function lineno: 4 - Outcome:
-
✅ tests/test_utils_npy.py
- Outcome:
passed - result:
- nodeid: tests/test_utils_npy.py::test_nice_arange[0-5-1-expected0] type: Function lineno: 7 - nodeid: tests/test_utils_npy.py::test_nice_arange[5-0--1-expected1] type: Function lineno: 7 - nodeid: tests/test_utils_npy.py::test_nice_arange[1-2-0.3-expected2] type: Function lineno: 7 - nodeid: tests/test_utils_npy.py::test_nice_arange[-2-2-1.5-expected3] type: Function lineno: 7 - nodeid: tests/test_utils_npy.py::test_nice_arange[2.5-0.5--0.4-expected4] type: Function lineno: 7 - nodeid: tests/test_utils_npy.py::test_nice_linspace[0-10-4-expected0] type: Function lineno: 18 - nodeid: tests/test_utils_npy.py::test_nice_linspace[5-15-2-expected1] type: Function lineno: 18 - nodeid: tests/test_utils_npy.py::test_nice_linspace[-5-5-4-expected2] type: Function lineno: 18 - nodeid: tests/test_utils_npy.py::test_nice_linspace[0-1-3-expected3] type: Function lineno: 18 - nodeid: tests/test_utils_npy.py::test_nice_linspace[2-2-3-expected4] type: Function lineno: 18 - nodeid: tests/test_utils_npy.py::test_nice_linspace[3-0-3-expected5] type: Function lineno: 18 - nodeid: tests/test_utils_npy.py::test_nice_linspace[0-1-0-expected6] type: Function lineno: 18 - nodeid: tests/test_utils_npy.py::test_nice_linspace[-2-2-3-expected7] type: Function lineno: 18 - nodeid: tests/test_utils_npy.py::test_nice_steps_centered[-2-2-2-True-expected0] type: Function lineno: 33 - nodeid: tests/test_utils_npy.py::test_nice_steps_centered[0-5-2-True-expected1] type: Function lineno: 33 - nodeid: tests/test_utils_npy.py::test_nice_steps_centered[0-5-2-False-expected2] type: Function lineno: 33 - nodeid: tests/test_utils_npy.py::test_nice_steps_centered[-1-2-1.5-True-expected3] type: Function lineno: 33 - nodeid: tests/test_utils_npy.py::test_nice_steps_centered[-1-2--1.5-True-expected4] type: Function lineno: 33 - nodeid: tests/test_utils_npy.py::test_nice_steps_centered[5-0--2-True-expected5] type: Function lineno: 33 - nodeid: tests/test_utils_npy.py::test_nice_steps_left_aligned[0-5-2-True-expected0] type: Function lineno: 46 - nodeid: tests/test_utils_npy.py::test_nice_steps_left_aligned[0-5-2-False-expected1] type: Function lineno: 46 - nodeid: tests/test_utils_npy.py::test_nice_steps_left_aligned[-1-2-1.5-True-expected2] type: Function lineno: 46 - nodeid: tests/test_utils_npy.py::test_nice_steps_left_aligned[-1-2-1.5-False-expected3] type: Function lineno: 46 - nodeid: tests/test_utils_npy.py::test_nice_steps_left_aligned[-2-1-1.2-True-expected4] type: Function lineno: 46 - nodeid: tests/test_utils_npy.py::test_nice_steps_left_aligned[5-0--2-True-expected5] type: Function lineno: 46 - nodeid: tests/test_utils_npy.py::test_nice_steps_left_aligned[5-0--2-False-expected6] type: Function lineno: 46 - nodeid: tests/test_utils_npy.py::test_nice_steps_right_aligned[0-5-2-True-expected0] type: Function lineno: 60 - nodeid: tests/test_utils_npy.py::test_nice_steps_right_aligned[0-5-2-False-expected1] type: Function lineno: 60 - nodeid: tests/test_utils_npy.py::test_nice_steps_right_aligned[-1-2-1.5-True-expected2] type: Function lineno: 60 - nodeid: tests/test_utils_npy.py::test_nice_steps_right_aligned[-1-2-1.5-False-expected3] type: Function lineno: 60 - nodeid: tests/test_utils_npy.py::test_nice_steps_right_aligned[5-0--2-True-expected4] type: Function lineno: 60 - nodeid: tests/test_utils_npy.py::test_nice_steps_right_aligned[5-0--2-False-expected5] type: Function lineno: 60 - nodeid: tests/test_utils_npy.py::test_nice_steps_right_aligned[-3-3-2-True-expected6] type: Function lineno: 60 - nodeid: tests/test_utils_npy.py::test_within_scalar[5-0-10-True] type: Function lineno: 74 - nodeid: tests/test_utils_npy.py::test_within_scalar[5-6-10-False] type: Function lineno: 74 - nodeid: tests/test_utils_npy.py::test_within_scalar[5-None-10-True] type: Function lineno: 74 - nodeid: tests/test_utils_npy.py::test_within_scalar[5-0-None-True] type: Function lineno: 74 - nodeid: tests/test_utils_npy.py::test_within_scalar[5-None-None-True] type: Function lineno: 74 - nodeid: tests/test_utils_npy.py::test_within_fraction[data0-2-5-0.6] type: Function lineno: 85 - nodeid: tests/test_utils_npy.py::test_within_fraction[data1-5-25-0.6666666666666666] type: Function lineno: 85 - nodeid: tests/test_utils_npy.py::test_within_fraction[data2-None-2-0.3333333333333333] type: Function lineno: 85 - nodeid: tests/test_utils_npy.py::test_within_fraction[data3-0-1-0] type: Function lineno: 85 - nodeid: tests/test_utils_npy.py::test_fraction_to_percentage[0.456-1-45.6] type: Function lineno: 96 - nodeid: tests/test_utils_npy.py::test_fraction_to_percentage[0.12345-2-12.35] type: Function lineno: 96 - nodeid: tests/test_utils_npy.py::test_fraction_to_percentage[0.9999-0-100.0] type: Function lineno: 96 - nodeid: tests/test_utils_npy.py::test_get_dtype[val0-ndarray] type: Function lineno: 105 - nodeid: tests/test_utils_npy.py::test_get_dtype[val1-list] type: Function lineno: 105 - nodeid: tests/test_utils_npy.py::test_get_dtype[3.14-float] type: Function lineno: 105 - nodeid: tests/test_utils_npy.py::test_get_shape[val0-expected0] type: Function lineno: 118 - nodeid: tests/test_utils_npy.py::test_get_shape[val1-expected1] type: Function lineno: 118 - nodeid: tests/test_utils_npy.py::test_get_shape[42-expected2] type: Function lineno: 118 - nodeid: tests/test_utils_npy.py::test_is_array[val0-True] type: Function lineno: 127 - nodeid: tests/test_utils_npy.py::test_is_array[val1-False] type: Function lineno: 127 - nodeid: tests/test_utils_npy.py::test_is_array[42-False] type: Function lineno: 127 - Outcome:
-
✅ tests/test_utils_opmsg.py
- Outcome:
passed - result:
[] - Outcome:
-
✅ tests/test_utils_path.py
- Outcome:
passed - result:
- nodeid: tests/test_utils_path.py::test_can_create_all_files_user_says_yes type: Function lineno: 10 - nodeid: tests/test_utils_path.py::test_can_create_all_files_user_says_no type: Function lineno: 36 - nodeid: tests/test_utils_path.py::test_make_missing_dir_creates_folder type: Function lineno: 54 - nodeid: tests/test_utils_path.py::test_glob_files_returns_matching_files_only type: Function lineno: 66 - nodeid: tests/test_utils_path.py::test_filter_files_excludes_directories type: Function lineno: 83 - Outcome:
-
✅ tests/test_utils_picklio.py
- Outcome:
passed - result:
- nodeid: tests/test_utils_picklio.py::test_pickle_and_unpickle[test_obj0] type: Function lineno: 6 - nodeid: tests/test_utils_picklio.py::test_pickle_and_unpickle[test_obj1] type: Function lineno: 6 - nodeid: tests/test_utils_picklio.py::test_pickle_and_unpickle[simple string] type: Function lineno: 6 - nodeid: tests/test_utils_picklio.py::test_pickle_and_unpickle[42] type: Function lineno: 6 - nodeid: tests/test_utils_picklio.py::test_pickle_and_unpickle[3.14159] type: Function lineno: 6 - nodeid: tests/test_utils_picklio.py::test_pickle_and_unpickle[test_obj5] type: Function lineno: 6 - nodeid: tests/test_utils_picklio.py::test_pickle_and_unpickle[test_obj6] type: Function lineno: 6 - Outcome:
-
✅ tests/test_utils_printing.py
- Outcome:
passed - result:
- nodeid: tests/test_utils_printing.py::test_maxlen_valid[seq0-3] type: Function lineno: 8 - nodeid: tests/test_utils_printing.py::test_maxlen_valid[seq1-0] type: Function lineno: 8 - nodeid: tests/test_utils_printing.py::test_maxlen_valid[seq2-3] type: Function lineno: 8 - nodeid: tests/test_utils_printing.py::test_maxlen_valid[seq3-2] type: Function lineno: 8 - nodeid: tests/test_utils_printing.py::test_strlen[42-2] type: Function lineno: 17 - nodeid: tests/test_utils_printing.py::test_strlen[hello-5] type: Function lineno: 17 - nodeid: tests/test_utils_printing.py::test_strlen[False-5] type: Function lineno: 17 - nodeid: tests/test_utils_printing.py::test_strlen[None-4] type: Function lineno: 17 - nodeid: tests/test_utils_printing.py::test_strlen[value4-9] type: Function lineno: 17 - nodeid: tests/test_utils_printing.py::test_strlen[value5-8] type: Function lineno: 17 - nodeid: tests/test_utils_printing.py::test_strlen[value6-6] type: Function lineno: 17 - nodeid: tests/test_utils_printing.py::test_strlen[-0] type: Function lineno: 17 - nodeid: tests/test_utils_printing.py::test_strlen[this is a phrase-16] type: Function lineno: 17 - nodeid: tests/test_utils_printing.py::test_maxstrlen[seq0-6] type: Function lineno: 31 - nodeid: tests/test_utils_printing.py::test_maxstrlen[seq1-3] type: Function lineno: 31 - nodeid: tests/test_utils_printing.py::test_maxstrlen[seq2-9] type: Function lineno: 31 - nodeid: tests/test_utils_printing.py::test_maxstrlen[seq3-16] type: Function lineno: 31 - nodeid: tests/test_utils_printing.py::test_maxstrlen[seq4-5] type: Function lineno: 31 - nodeid: tests/test_utils_printing.py::test_transpose_matrix[data0-expected0] type: Function lineno: 41 - nodeid: tests/test_utils_printing.py::test_transpose_matrix[data1-expected1] type: Function lineno: 41 - nodeid: tests/test_utils_printing.py::test_transpose_matrix[data2-expected2] type: Function lineno: 41 - nodeid: tests/test_utils_printing.py::test_prepend[initial0-1-expected0] type: Function lineno: 50 - nodeid: tests/test_utils_printing.py::test_prepend[initial1-a-expected1] type: Function lineno: 50 - nodeid: tests/test_utils_printing.py::test_prepend[initial2-prepend2-expected2] type: Function lineno: 50 - nodeid: tests/test_utils_printing.py::test_prepend[initial3-prepend3-expected3] type: Function lineno: 50 - nodeid: tests/test_utils_printing.py::test_fmt_table_line[entries0-widths0- a bbb] type: Function lineno: 61 - nodeid: tests/test_utils_printing.py::test_fmt_table_line[entries1-widths1- 1 2] type: Function lineno: 61 - nodeid: tests/test_utils_printing.py::test_fmt_table_line[entries2-widths2- long val] type: Function lineno: 61 - nodeid: tests/test_utils_printing.py::test_fmt_table_line[entries3-widths3- True False] type: Function lineno: 61 - nodeid: tests/test_utils_printing.py::test_fmt_table_line[entries4-widths4- 123 4567] type: Function lineno: 61 - nodeid: tests/test_utils_printing.py::test_fmt_table_line[entries5-widths5- text with space end] type: Function lineno: 61 - nodeid: tests/test_utils_printing.py::test_fmt_table_line[entries6-widths6- {'a': 1} {'b': 2}] type: Function lineno: 61 - nodeid: tests/test_utils_printing.py::test_fmt_table_line[entries7-widths7- [1, 2] [3, 4]] type: Function lineno: 61 - nodeid: tests/test_utils_printing.py::test_fmt_label_sep[widths0------ ----] type: Function lineno: 74 - nodeid: tests/test_utils_printing.py::test_fmt_label_sep[widths1-=-== ===] type: Function lineno: 74 - nodeid: tests/test_utils_printing.py::test_fmt_label_sep[widths2-*-***** **] type: Function lineno: 74 - nodeid: tests/test_utils_printing.py::test_printable_dict_with_header[d0-HeaderTest-expected_lines0] type: Function lineno: 82 - nodeid: tests/test_utils_printing.py::test_printable_dict_of_dicts type: Function lineno: 101 - nodeid: tests/test_utils_printing.py::test_printable_table[data0-labels0-A: ID\nB: \u2713 Success?\nC: SuperPrecisionValue\nD: Result Metadata\n\n# A B C D\n- ------------- ----- ---------- ----------------------------\n0 X1 True 0.1234 {'meta': 'ok'}\n1 AnotherSample False 98765.4321 {'meta': [1, 2, 3]}\n2 Z None 0.0 {'meta': {'nested_key': 42}}] type: Function lineno: 128 - Outcome:
-
✅ tests/test_utils_pv.py
- Outcome:
passed - result:
[] - Outcome:
-
✅ tests/test_utils_pvpreload.py
- Outcome:
passed - result:
[] - Outcome:
-
✅ tests/test_utils_pyepics.py
- Outcome:
passed - result:
[] - Outcome:
-
✅ tests/test_utils_rangebar.py
- Outcome:
passed - result:
- nodeid: tests/test_utils_rangebar.py::test_full_progress_bar type: Function lineno: 9 - nodeid: tests/test_utils_rangebar.py::test_half_progress_bar type: Function lineno: 23 - nodeid: tests/test_utils_rangebar.py::test_zero_progress_bar type: Function lineno: 38 - nodeid: tests/test_utils_rangebar.py::test_overflow_bar type: Function lineno: 53 - nodeid: tests/test_utils_rangebar.py::test_underflow_bar type: Function lineno: 67 - nodeid: tests/test_utils_rangebar.py::test_repr type: Function lineno: 81 - nodeid: tests/test_utils_rangebar.py::test_each_value_separately[0- ] type: Function lineno: 87 - nodeid: tests/test_utils_rangebar.py::test_each_value_separately[10-\u2588 ] type: Function lineno: 87 - nodeid: tests/test_utils_rangebar.py::test_each_value_separately[25-\u2588\u2588\u258c ] type: Function lineno: 87 - nodeid: tests/test_utils_rangebar.py::test_each_value_separately[27-\u2588\u2588\u258a ] type: Function lineno: 87 - nodeid: tests/test_utils_rangebar.py::test_each_value_separately[49-\u2588\u2588\u2588\u2588\u2589 ] type: Function lineno: 87 - nodeid: tests/test_utils_rangebar.py::test_each_value_separately[50-\u2588\u2588\u2588\u2588\u2588 ] type: Function lineno: 87 - nodeid: tests/test_utils_rangebar.py::test_each_value_separately[51-\u2588\u2588\u2588\u2588\u2588\u258f ] type: Function lineno: 87 - nodeid: tests/test_utils_rangebar.py::test_each_value_separately[73-\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u258e ] type: Function lineno: 87 - nodeid: tests/test_utils_rangebar.py::test_each_value_separately[75-\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u258c ] type: Function lineno: 87 - nodeid: tests/test_utils_rangebar.py::test_each_value_separately[90-\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588 ] type: Function lineno: 87 - nodeid: tests/test_utils_rangebar.py::test_each_value_separately[100-\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588] type: Function lineno: 87 - Outcome:
-
✅ tests/test_utils_readable.py
- Outcome:
passed - result:
- nodeid: tests/test_utils_readable.py::test_readable_seconds[59.4-59 seconds] type: Function lineno: 3 - nodeid: tests/test_utils_readable.py::test_readable_seconds[59.9-60 seconds] type: Function lineno: 3 - nodeid: tests/test_utils_readable.py::test_readable_seconds[119.9-120 seconds] type: Function lineno: 3 - nodeid: tests/test_utils_readable.py::test_readable_seconds[120.1-2 minutes] type: Function lineno: 3 - nodeid: tests/test_utils_readable.py::test_readable_seconds[3599.9-60 minutes] type: Function lineno: 3 - nodeid: tests/test_utils_readable.py::test_readable_seconds[3600.1-60 minutes] type: Function lineno: 3 - nodeid: tests/test_utils_readable.py::test_readable_seconds[7199.9-120 minutes] type: Function lineno: 3 - nodeid: tests/test_utils_readable.py::test_readable_seconds[7200.1-2 hours] type: Function lineno: 3 - nodeid: tests/test_utils_readable.py::test_readable_seconds[90.4-90 seconds] type: Function lineno: 3 - nodeid: tests/test_utils_readable.py::test_readable_seconds[90.6-91 seconds] type: Function lineno: 3 - nodeid: tests/test_utils_readable.py::test_readable_seconds[121.9-2 minutes] type: Function lineno: 3 - nodeid: tests/test_utils_readable.py::test_readable_seconds[1296000.0-2 weeks] type: Function lineno: 3 - nodeid: tests/test_utils_readable.py::test_readable_seconds[2592000.0-4 weeks] type: Function lineno: 3 - nodeid: tests/test_utils_readable.py::test_readable_seconds[2800000.0-5 weeks] type: Function lineno: 3 - nodeid: tests/test_utils_readable.py::test_readable_seconds[3888000.0-6 weeks] type: Function lineno: 3 - nodeid: tests/test_utils_readable.py::test_readable_seconds[5097600.0-8 weeks] type: Function lineno: 3 - nodeid: tests/test_utils_readable.py::test_readable_seconds[5184000.0-9 weeks] type: Function lineno: 3 - nodeid: tests/test_utils_readable.py::test_readable_seconds[5270400.0-2 months] type: Function lineno: 3 - nodeid: tests/test_utils_readable.py::test_readable_seconds[23328000.0-9 months] type: Function lineno: 3 - nodeid: tests/test_utils_readable.py::test_readable_seconds[31104000.0-12 months] type: Function lineno: 3 - nodeid: tests/test_utils_readable.py::test_readable_seconds[33696000.0-13 months] type: Function lineno: 3 - nodeid: tests/test_utils_readable.py::test_readable_seconds[59616000.0-23 months] type: Function lineno: 3 - nodeid: tests/test_utils_readable.py::test_readable_seconds[62208000.0-24 months] type: Function lineno: 3 - nodeid: tests/test_utils_readable.py::test_readable_seconds[64208000.0-2 years] type: Function lineno: 3 - Outcome:
-
✅ tests/test_utils_registry.py
- Outcome:
passed - result:
- nodeid: tests/test_utils_registry.py::test_metaclass_creates_weakset type: Function lineno: 13 - nodeid: tests/test_utils_registry.py::test_metaclass_tracks_instances type: Function lineno: 22 - nodeid: tests/test_utils_registry.py::test_registry_inheritance type: Function lineno: 32 - nodeid: tests/test_utils_registry.py::test_instance_tracking type: Function lineno: 39 - nodeid: tests/test_utils_registry.py::test_collect_instances_recursive type: Function lineno: 53 - nodeid: tests/test_utils_registry.py::test_instances_function type: Function lineno: 69 - nodeid: tests/test_utils_registry.py::test_non_registry_class_error type: Function lineno: 93 - nodeid: tests/test_utils_registry.py::test_signature_preservation type: Function lineno: 102 - Outcome:
-
✅ tests/test_utils_reprate.py
- Outcome:
passed - result:
[] - Outcome:
-
✅ tests/test_utils_richcfg.py
- Outcome:
passed - result:
- nodeid: tests/test_utils_richcfg.py::test_rich_inspector_outputs_more_than_builtin type: Function lineno: 53 - Outcome:
-
✅ tests/test_utils_run_later.py
- Outcome:
passed - result:
- nodeid: tests/test_utils_run_later.py::test_init_and_repr type: Function lineno: 17 - nodeid: tests/test_utils_run_later.py::test_call type: Function lineno: 22 - nodeid: tests/test_utils_run_later.py::test_matmul_with_string type: Function lineno: 27 - nodeid: tests/test_utils_run_later.py::test_matmul_with_list type: Function lineno: 32 - nodeid: tests/test_utils_run_later.py::test_matmul_with_single_int type: Function lineno: 37 - nodeid: tests/test_utils_run_later.py::test_run_at_future_triggered_and_logs type: Function lineno: 49 - nodeid: tests/test_utils_run_later.py::test_run_at_already_past type: Function lineno: 61 - nodeid: tests/test_utils_run_later.py::test_run_in_future_triggered_and_logs type: Function lineno: 72 - nodeid: tests/test_utils_run_later.py::test_run_in_past type: Function lineno: 83 - nodeid: tests/test_utils_run_later.py::test_run_later_with_seconds type: Function lineno: 95 - nodeid: tests/test_utils_run_later.py::test_run_later_with_past_datetime type: Function lineno: 105 - nodeid: tests/test_utils_run_later.py::test_run_at_tqdm_multiple_updates type: Function lineno: 115 - nodeid: tests/test_utils_run_later.py::test_today_basic type: Function lineno: 142 - nodeid: tests/test_utils_run_later.py::test_tomorrow_basic type: Function lineno: 148 - nodeid: tests/test_utils_run_later.py::test_yesterday_basic type: Function lineno: 154 - nodeid: tests/test_utils_run_later.py::test_today_matmul_string type: Function lineno: 160 - nodeid: tests/test_utils_run_later.py::test_tomorrow_matmul_list type: Function lineno: 166 - nodeid: tests/test_utils_run_later.py::test_yesterday_matmul_single type: Function lineno: 172 - Outcome:
-
✅ tests/test_utils_sendmail.py
- Outcome:
passed - result:
- nodeid: tests/test_utils_sendmail.py::test_sendmail_local_delivery type: Function lineno: 13 - nodeid: tests/test_utils_sendmail.py::test_sendmail_raises_on_sendmail_failure type: Function lineno: 60 - Outcome:
-
✅ tests/test_utils_sendsms.py
- Outcome:
passed - result:
- nodeid: tests/test_utils_sendsms.py::test_sendsms_local_delivery type: Function lineno: 6 - Outcome:
-
✅ tests/test_utils_shortcut.py
- Outcome:
passed - result:
- nodeid: tests/test_utils_shortcut.py::TestShortcutInitialization type: Class - nodeid: tests/test_utils_shortcut.py::test_run_method type: Function lineno: 31 - nodeid: tests/test_utils_shortcut.py::test_repr_output type: Function lineno: 54 - nodeid: tests/test_utils_shortcut.py::test_source_with_regular_function type: Function lineno: 62 - nodeid: tests/test_utils_shortcut.py::test_source_error_handling type: Function lineno: 76 - nodeid: tests/test_utils_shortcut.py::test_as_shortcut_basic type: Function lineno: 86 - nodeid: tests/test_utils_shortcut.py::test_as_shortcut_with_name type: Function lineno: 96 - nodeid: tests/test_utils_shortcut.py::test_as_shortcut_factory_pattern type: Function lineno: 104 - nodeid: tests/test_utils_shortcut.py::TestShortcutsSingleton type: Class - nodeid: tests/test_utils_shortcut.py::TestFullIntegration type: Class - nodeid: tests/test_utils_shortcut.py::test_registry_inheritance type: Function lineno: 204 - Outcome:
-
✅ tests/test_utils_shortcut.py::TestFullIntegration
- Outcome:
passed - result:
- nodeid: tests/test_utils_shortcut.py::TestFullIntegration::test_workflow type: Function lineno: 170 - nodeid: tests/test_utils_shortcut.py::TestFullIntegration::test_multiple_shortcuts type: Function lineno: 190 - Outcome:
-
✅ tests/test_utils_shortcut.py::TestShortcutInitialization
- Outcome:
passed - result:
- nodeid: tests/test_utils_shortcut.py::TestShortcutInitialization::test_init_with_custom_name type: Function lineno: 16 - nodeid: tests/test_utils_shortcut.py::TestShortcutInitialization::test_init_without_name type: Function lineno: 23 - Outcome:
-
✅ tests/test_utils_shortcut.py::TestShortcutsSingleton
- Outcome:
passed - result:
- nodeid: tests/test_utils_shortcut.py::TestShortcutsSingleton::test_singleton_behavior type: Function lineno: 121 - nodeid: tests/test_utils_shortcut.py::TestShortcutsSingleton::test_registration type: Function lineno: 127 - nodeid: tests/test_utils_shortcut.py::TestShortcutsSingleton::test_getitem_access type: Function lineno: 141 - nodeid: tests/test_utils_shortcut.py::TestShortcutsSingleton::test_missing_key type: Function lineno: 149 - nodeid: tests/test_utils_shortcut.py::TestShortcutsSingleton::test_repr_output type: Function lineno: 154 - Outcome:
-
✅ tests/test_utils_snapshot.py
- Outcome:
passed - result:
- nodeid: tests/test_utils_snapshot.py::test_snapshot[exclude_internals] type: Function lineno: 83 - nodeid: tests/test_utils_snapshot.py::test_snapshot[include_internals] type: Function lineno: 83 - nodeid: tests/test_utils_snapshot.py::test_snapshot[empty_case] type: Function lineno: 83 - nodeid: tests/test_utils_snapshot.py::test_snapshot[sort_str] type: Function lineno: 83 - nodeid: tests/test_utils_snapshot.py::test_snapshot[sort_id] type: Function lineno: 83 - nodeid: tests/test_utils_snapshot.py::test_snapshot[sort_case_insensitive] type: Function lineno: 83 - nodeid: tests/test_utils_snapshot.py::test_snapshot[sort_length] type: Function lineno: 83 - nodeid: tests/test_utils_snapshot.py::test_snapshot[sort_reverse] type: Function lineno: 83 - Outcome:
-
✅ tests/test_utils_termtitle.py
- Outcome:
passed - result:
- nodeid: tests/test_utils_termtitle.py::test_terminal_title_with_tmux type: Function lineno: 9 - Outcome:
-
✅ tests/test_utils_tqdm_mod.py
- Outcome:
passed - result:
- nodeid: tests/test_utils_tqdm_mod.py::test_complete_progress_bar type: Function lineno: 25 - nodeid: tests/test_utils_tqdm_mod.py::test_set_progress_multiple_points type: Function lineno: 42 - nodeid: tests/test_utils_tqdm_mod.py::test_format_sizeof_alignment type: Function lineno: 65 - nodeid: tests/test_utils_tqdm_mod.py::test_float_alignment_in_bar type: Function lineno: 83 - nodeid: tests/test_utils_tqdm_mod.py::test_custom_unit type: Function lineno: 132 - nodeid: tests/test_utils_tqdm_mod.py::test_clamp_above_total type: Function lineno: 146 - nodeid: tests/test_utils_tqdm_mod.py::test_clamp_below_zero type: Function lineno: 163 - Outcome:
-
✅ tests/test_utils_trinary.py
- Outcome:
passed - result:
- nodeid: tests/test_utils_trinary.py::test_check_trinary_valid_values type: Function lineno: 6 - nodeid: tests/test_utils_trinary.py::test_check_trinary_invalid_value type: Function lineno: 14 - nodeid: tests/test_utils_trinary.py::test_check_trinary_with_custom_allowed_values type: Function lineno: 22 - Outcome:
-
✅ tests/test_utils_typecast.py
- Outcome:
passed - result:
- nodeid: tests/test_utils_typecast.py::test_downcast_success type: Function lineno: 24 - nodeid: tests/test_utils_typecast.py::test_upcast_success type: Function lineno: 30 - nodeid: tests/test_utils_typecast.py::test_downcast_invalid type: Function lineno: 41 - nodeid: tests/test_utils_typecast.py::test_upcast_invalid type: Function lineno: 48 - nodeid: tests/test_utils_typecast.py::test_object_identity_preserved type: Function lineno: 53 - nodeid: tests/test_utils_typecast.py::test_ensure_subclass_valid type: Function lineno: 64 - nodeid: tests/test_utils_typecast.py::test_ensure_subclass_invalid type: Function lineno: 67 - nodeid: tests/test_utils_typecast.py::test_cast_changes_class type: Function lineno: 79 - nodeid: tests/test_utils_typecast.py::test_cast_preserves_identity type: Function lineno: 86 - Outcome:
-
✅ tests/test_utils_utils.py
- Outcome:
passed - result:
- nodeid: tests/test_utils_utils.py::test_singleton_instance type: Function lineno: 17 - nodeid: tests/test_utils_utils.py::test_singleton_identity type: Function lineno: 25 - nodeid: tests/test_utils_utils.py::test_typename[None-NoneType] type: Function lineno: 44 - nodeid: tests/test_utils_utils.py::test_typename[True-bool] type: Function lineno: 44 - nodeid: tests/test_utils_utils.py::test_typename[42-int] type: Function lineno: 44 - nodeid: tests/test_utils_utils.py::test_typename[3.14-float] type: Function lineno: 44 - nodeid: tests/test_utils_utils.py::test_typename[text-str] type: Function lineno: 44 - nodeid: tests/test_utils_utils.py::test_typename[obj5-set] type: Function lineno: 44 - nodeid: tests/test_utils_utils.py::test_typename[obj6-list] type: Function lineno: 44 - nodeid: tests/test_utils_utils.py::test_typename[obj7-list] type: Function lineno: 44 - nodeid: tests/test_utils_utils.py::test_typename[obj8-dict] type: Function lineno: 44 - nodeid: tests/test_utils_utils.py::test_typename[<lambda>-function] type: Function lineno: 44 - nodeid: tests/test_utils_utils.py::test_typename[sample_function-function] type: Function lineno: 44 - nodeid: tests/test_utils_utils.py::test_typename[nested-function] type: Function lineno: 44 - nodeid: tests/test_utils_utils.py::test_typename[len-builtin_function_or_method] type: Function lineno: 44 - nodeid: tests/test_utils_utils.py::test_typename[sum-builtin_function_or_method] type: Function lineno: 44 - nodeid: tests/test_utils_utils.py::test_typename[math-module] type: Function lineno: 44 - nodeid: tests/test_utils_utils.py::test_typename[sys-module] type: Function lineno: 44 - nodeid: tests/test_utils_utils.py::test_typename[function-type] type: Function lineno: 44 - nodeid: tests/test_utils_utils.py::test_typename[<genexpr>-generator] type: Function lineno: 44 - nodeid: tests/test_utils_utils.py::test_typename[obj18-list_iterator] type: Function lineno: 44 - nodeid: tests/test_utils_utils.py::test_next_int[nums0-4] type: Function lineno: 77 - nodeid: tests/test_utils_utils.py::test_next_int[nums1-21] type: Function lineno: 77 - nodeid: tests/test_utils_utils.py::test_next_int[nums2-0] type: Function lineno: 77 - nodeid: tests/test_utils_utils.py::test_zero_pad[7-3-007] type: Function lineno: 87 - nodeid: tests/test_utils_utils.py::test_zero_pad[123-5-00123] type: Function lineno: 87 - nodeid: tests/test_utils_utils.py::test_zero_pad[0-2-00] type: Function lineno: 87 - nodeid: tests/test_utils_utils.py::test_iround[3.6-4] type: Function lineno: 97 - nodeid: tests/test_utils_utils.py::test_iround[2.1-2] type: Function lineno: 97 - nodeid: tests/test_utils_utils.py::test_iround[-1.5--2] type: Function lineno: 97 - nodeid: tests/test_utils_utils.py::test_iround[-1.4--1] type: Function lineno: 97 - nodeid: tests/test_utils_utils.py::test_sorted_naturally[items0-expected0] type: Function lineno: 108 - nodeid: tests/test_utils_utils.py::test_sorted_naturally[items1-expected1] type: Function lineno: 108 - nodeid: tests/test_utils_utils.py::test_sorted_naturally_reverse[items0-expected0] type: Function lineno: 115 - Outcome:
-
✅ tests/test_utils_xrange.py
- Outcome:
passed - result:
- nodeid: tests/test_utils_xrange.py::test_xrange_finite[args0-kwargs0-expected0] type: Function lineno: 11 - nodeid: tests/test_utils_xrange.py::test_xrange_finite[args1-kwargs1-expected1] type: Function lineno: 11 - nodeid: tests/test_utils_xrange.py::test_xrange_finite[args2-kwargs2-expected2] type: Function lineno: 11 - nodeid: tests/test_utils_xrange.py::test_xrange_finite[args3-kwargs3-expected3] type: Function lineno: 11 - nodeid: tests/test_utils_xrange.py::test_xrange_infinite[args0-kwargs0-count(0)] type: Function lineno: 20 - nodeid: tests/test_utils_xrange.py::test_xrange_infinite[args1-kwargs1-count(0, 2)] type: Function lineno: 20 - nodeid: tests/test_utils_xrange.py::test_xrange_too_many_args[args0] type: Function lineno: 31 - Outcome:
- Outcome:
✅ . (1 tests)
-
✅ .
- Outcome:
passed - result:
- nodeid: ci-reports type: Dir - nodeid: markdown type: Dir - nodeid: morbidissimo type: Dir - nodeid: outputs type: Dir - nodeid: slic type: Package - nodeid: temp-ci type: Dir - nodeid: test-ci type: Dir - nodeid: tests type: Dir - Outcome:
⚠️ Warnings
Warnings nº1
message: invalid escape sequence \-
category: DeprecationWarning
when: collect
filename: /workspace/tligui_y/slic/.pixi/envs/default/lib/python3.8/site-packages/bsread/h5.py
lineno: 207
Warnings nº2
message: The module numpy.dual is deprecated. Instead of using dual, use the functions directly from numpy or scipy.
category: DeprecationWarning
when: collect
filename: /workspace/tligui_y/slic/.pixi/envs/default/lib/python3.8/site-packages/scipy/fft/__init__.py
lineno: 97
Warnings nº3
message: invalid escape sequence \[
category: DeprecationWarning
when: collect
filename: /workspace/tligui_y/slic/tests/test_utils_pv.py
lineno: 12