Table of Contents
Test Report
View CI Run 2750 | Commit 889a5cc ✅ 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_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])
================== 6 failed, 523 passed, 3 warnings in 9.67s ===================
🪵 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, json-report-1.5.0, cov-5.0.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 .... [ 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_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 14:29:31 tools:40] cannot assign endstation to IP 172.18.0.3 (0b4b3eb32801)
[W 250829 14:29:32 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 0x7ff22d50b910>
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 0x7ff22d517670>
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, 59492.2 Hz]
AlignBar: 12%|#2 | 12.5/100.1 [00:00<00:00, 86194.2 Hz]
AlignBar: 100%|#########9| 99.9/100.1 [00:00<00:00, 453717.2 Hz]
AlignBar: 100%|##########| 100.1/100.1 [00:00<00:00, 224803.9 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 16:29:37 CEST
🧾 General Info
- duration: 9.648405313491821
- root: /workspace/tligui_y/slic
- environment: {}
📋 Summary
- Passed: 523
- Failed: 6
- Total: 529
- Collected: 529
🔎 Tests
✅ Passed (523)
-
📄 morbidissimo/morbidissimo/morioc/test_infer_type.py
↳ Function: test_it_type_str
-
✅ Test 1
📌 Setup phase
duration:
0.0008011134341359138outcome:
passed📌 Call phase
duration:
0.0002745911478996277outcome:
passed📌 Teardown phase
duration:
0.00023573357611894608outcome:
passed
↳ Function: test_it_type_float
-
✅ Test 2
📌 Setup phase
duration:
0.0001735743135213852outcome:
passed📌 Call phase
duration:
0.00019117537885904312outcome:
passed📌 Teardown phase
duration:
0.00013935286551713943outcome:
passed
↳ Function: test_it_type_int
-
✅ Test 3
📌 Setup phase
duration:
0.0001509999856352806outcome:
passed📌 Call phase
duration:
0.00017209723591804504outcome:
passed📌 Teardown phase
duration:
0.00013022497296333313outcome:
passed
↳ Function: test_it_value_str
-
✅ Test 4
📌 Setup phase
duration:
0.00015661120414733887outcome:
passed📌 Call phase
duration:
0.00017770938575267792outcome:
passed📌 Teardown phase
duration:
0.0001574493944644928outcome:
passed
↳ Function: test_it_value_long_str
-
✅ Test 5
📌 Setup phase
duration:
0.0001427736133337021outcome:
passed📌 Call phase
duration:
0.0001709628850221634outcome:
passed📌 Teardown phase
duration:
0.00013669393956661224outcome:
passed
↳ Function: test_it_value_float
-
✅ Test 6
📌 Setup phase
duration:
0.00015013478696346283outcome:
passed📌 Call phase
duration:
0.00020216871052980423outcome:
passed📌 Teardown phase
duration:
0.00014621391892433167outcome:
passed
↳ Function: test_it_value_int
-
✅ Test 7
📌 Setup phase
duration:
0.00014068465679883957outcome:
passed📌 Call phase
duration:
0.00019460637122392654outcome:
passed📌 Teardown phase
duration:
0.00014049839228391647outcome:
passed
↳ Function: test_it_empty_value_str
-
✅ Test 8
📌 Setup phase
duration:
0.0001421542838215828outcome:
passed📌 Call phase
duration:
0.0001833336427807808outcome:
passed📌 Teardown phase
duration:
0.00014440156519412994outcome:
passed
↳ Function: test_it_empty_value_float
-
✅ Test 9
📌 Setup phase
duration:
0.00014482811093330383outcome:
passed📌 Call phase
duration:
0.00018570851534605026outcome:
passed📌 Teardown phase
duration:
0.00013141054660081863outcome:
passed
↳ Function: test_it_empty_value_int
-
✅ Test 10
📌 Setup phase
duration:
0.0001389598473906517outcome:
passed📌 Call phase
duration:
0.00017021503299474716outcome:
passed📌 Teardown phase
duration:
0.00012750551104545593outcome:
passed
↳ Function: test_pstrue_str
-
✅ Test 11
📌 Setup phase
duration:
0.00014283973723649979outcome:
passed📌 Call phase
duration:
0.00019148364663124084outcome:
passed📌 Teardown phase
duration:
0.00013211462646722794outcome:
passed
↳ Function: test_pstrue_float
-
✅ Test 12
📌 Setup phase
duration:
0.00013726577162742615outcome:
passed📌 Call phase
duration:
0.00017125345766544342outcome:
passed📌 Teardown phase
duration:
0.00012741424143314362outcome:
passed
↳ Function: test_pstrue_int
-
✅ Test 13
📌 Setup phase
duration:
0.00014680717140436172outcome:
passed📌 Call phase
duration:
0.000178629532456398outcome:
passed📌 Teardown phase
duration:
0.00012964941561222076outcome:
passed
↳ Function: test_psfalse_str
-
✅ Test 14
📌 Setup phase
duration:
0.00015967711806297302outcome:
passed📌 Call phase
duration:
0.00017647631466388702outcome:
passed📌 Teardown phase
duration:
0.00013001449406147003outcome:
passed
↳ Function: test_psfalse_float
-
✅ Test 15
📌 Setup phase
duration:
0.00015053804963827133outcome:
passed📌 Call phase
duration:
0.00016766414046287537outcome:
passed📌 Teardown phase
duration:
0.00012741237878799438outcome:
passed
↳ Function: test_psfalse_int
-
✅ Test 16
📌 Setup phase
duration:
0.0001499159261584282outcome:
passed📌 Call phase
duration:
0.00016347412019968033outcome:
passed📌 Teardown phase
duration:
0.00013190973550081253outcome:
passed
↳ Function: test_it_None
-
✅ Test 17
📌 Setup phase
duration:
0.00015289243310689926outcome:
passed📌 Call phase
duration:
0.0001982506364583969outcome:
passed📌 Teardown phase
duration:
0.00012842193245887756outcome:
passed
↳ Function: test_it_True
-
✅ Test 18
📌 Setup phase
duration:
0.00014505069702863693outcome:
passed📌 Call phase
duration:
0.00017119012773036957outcome:
passed📌 Teardown phase
duration:
0.00012960471212863922outcome:
passed
↳ Function: test_it_False
-
✅ Test 19
📌 Setup phase
duration:
0.0001472514122724533outcome:
passed📌 Call phase
duration:
0.00036197900772094727outcome:
passed📌 Teardown phase
duration:
0.00017081573605537415outcome:
passed
↳ Function: test_it_nan
-
✅ Test 20
📌 Setup phase
duration:
0.00014978181570768356outcome:
passed📌 Call phase
duration:
0.00017842929810285568outcome:
passed📌 Teardown phase
duration:
0.000147906132042408outcome:
passed
↳ Function: test_it_np_nan
-
✅ Test 21
📌 Setup phase
duration:
0.0001425519585609436outcome:
passed📌 Call phase
duration:
0.00016893725842237473outcome:
passed📌 Teardown phase
duration:
0.00014365185052156448outcome:
passed
↳ Function: test_it_np1D_int
-
✅ Test 22
📌 Setup phase
duration:
0.00013927463442087173outcome:
passed📌 Call phase
duration:
0.0002555418759584427outcome:
passed📌 Teardown phase
duration:
0.00013125035911798477outcome:
passed
↳ Function: test_it_np2D_int
-
✅ Test 23
📌 Setup phase
duration:
0.0001475028693675995outcome:
passed📌 Call phase
duration:
0.00023716315627098083outcome:
passed📌 Teardown phase
duration:
0.00013466645032167435outcome:
passed
↳ Function: test_it_np1D_float
-
✅ Test 24
📌 Setup phase
duration:
0.00013883691281080246outcome:
passed📌 Call phase
duration:
0.0002921260893344879outcome:
passed📌 Teardown phase
duration:
0.00014550145715475082outcome:
passed
↳ Function: test_it_np2D_float
-
✅ Test 25
📌 Setup phase
duration:
0.00016759894788265228outcome:
passed📌 Call phase
duration:
0.00023478083312511444outcome:
passed📌 Teardown phase
duration:
0.00013293419033288956outcome:
passed
↳ Function: test_it_np1D_bool
-
✅ Test 26
📌 Setup phase
duration:
0.00015938933938741684outcome:
passed📌 Call phase
duration:
0.00019779708236455917outcome:
passed📌 Teardown phase
duration:
0.00013311300426721573outcome:
passed
↳ Function: test_it_np1D_object
-
✅ Test 27
📌 Setup phase
duration:
0.00014480017125606537outcome:
passed📌 Call phase
duration:
0.00018580444157123566outcome:
passed📌 Teardown phase
duration:
0.00014292821288108826outcome:
passed
↳ Function: test_it_np_scalar_int
-
✅ Test 28
📌 Setup phase
duration:
0.0001474861055612564outcome:
passed📌 Call phase
duration:
0.00021020695567131042outcome:
passed📌 Teardown phase
duration:
0.00014274287968873978outcome:
passed
↳ Function: test_it_np_scalar_float
-
✅ Test 29
📌 Setup phase
duration:
0.0001377379521727562outcome:
passed📌 Call phase
duration:
0.00019876845180988312outcome:
passed📌 Teardown phase
duration:
0.00014062412083148956outcome:
passed
↳ Function: test_it_np_scalar_bool
-
✅ Test 30
📌 Setup phase
duration:
0.00014731939882040024outcome:
passed📌 Call phase
duration:
0.0002048211172223091outcome:
passed📌 Teardown phase
duration:
0.0001330813392996788outcome:
passed
↳ Function: test_it_list
-
✅ Test 31
📌 Setup phase
duration:
0.00013972073793411255outcome:
passed📌 Call phase
duration:
0.00018357671797275543outcome:
passed📌 Teardown phase
duration:
0.0001340499147772789outcome:
passed
↳ Function: test_it_tuple
-
✅ Test 32
📌 Setup phase
duration:
0.0001403307542204857outcome:
passed📌 Call phase
duration:
0.00018551945686340332outcome:
passed📌 Teardown phase
duration:
0.00013988465070724487outcome:
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.0004700189456343651outcome:
passed📌 Call phase
duration:
0.00018836092203855515outcome:
passed📌 Teardown phase
duration:
0.00021489523351192474outcome:
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.0003198748454451561outcome:
passed📌 Call phase
duration:
0.00017800461500883102outcome:
passed📌 Teardown phase
duration:
0.0001937197521328926outcome:
passed -
✅ Test 35
params:lst=[], index=0, expected=[[], []]📌 Parameters
params: lst: [] index: 0 expected: [[], []] id: "lst2-0-expected2"📌 Setup phase
duration:
0.0003052055835723877outcome:
passed📌 Call phase
duration:
0.0001695854589343071outcome:
passed📌 Teardown phase
duration:
0.00019471906125545502outcome:
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.0003293529152870178outcome:
passed📌 Call phase
duration:
0.0001729847863316536outcome:
passed📌 Teardown phase
duration:
0.00019227620214223862outcome:
passed -
✅ Test 37
params:a=[], b=["x"], expected=["x"]📌 Parameters
params: a: [] b: ["x"] expected: ["x"] id: "a1-b1-expected1"📌 Setup phase
duration:
0.00031732767820358276outcome:
passed📌 Call phase
duration:
0.00017568189650774002outcome:
passed📌 Teardown phase
duration:
0.00020416080951690674outcome:
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.0003084056079387665outcome:
passed📌 Call phase
duration:
0.00017473287880420685outcome:
passed📌 Teardown phase
duration:
0.00018464121967554092outcome:
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.00033072661608457565outcome:
passed📌 Call phase
duration:
0.00017717666923999786outcome:
passed📌 Teardown phase
duration:
0.00018676463514566422outcome:
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.000398474745452404outcome:
passed📌 Call phase
duration:
0.0001965407282114029outcome:
passed📌 Teardown phase
duration:
0.00019280053675174713outcome:
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.0003130398690700531outcome:
passed📌 Call phase
duration:
0.0001908550038933754outcome:
passed📌 Teardown phase
duration:
0.00018820539116859436outcome:
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.0002623125910758972outcome:
passed📌 Call phase
duration:
0.0002032928168773651outcome:
passed📌 Teardown phase
duration:
0.00018596649169921875outcome:
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.00026156380772590637outcome:
passed📌 Call phase
duration:
0.00018679257482290268outcome:
passed📌 Teardown phase
duration:
0.00018139835447072983outcome:
passed -
✅ Test 44
params:pos=[], expected_names=[]📌 Parameters
params: pos: [] expected_names: [] id: "pos2-expected_names2"📌 Setup phase
duration:
0.0002670474350452423outcome:
passed📌 Call phase
duration:
0.00018920470029115677outcome:
passed📌 Teardown phase
duration:
0.00017412379384040833outcome:
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.0003272350877523422outcome:
passed📌 Call phase
duration:
0.00020295381546020508outcome:
passed📌 Teardown phase
duration:
0.00019000936299562454outcome:
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.00031322240829467773outcome:
passed📌 Call phase
duration:
0.00018848199397325516outcome:
passed📌 Teardown phase
duration:
0.00019125360995531082outcome:
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.0002933768555521965outcome:
passed📌 Call phase
duration:
0.00018368754535913467outcome:
passed📌 Teardown phase
duration:
0.0001979907974600792outcome:
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.00032233819365501404outcome:
passed📌 Call phase
duration:
0.00022341031581163406outcome:
passed📌 Teardown phase
duration:
0.0001947116106748581outcome:
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.00031582266092300415outcome:
passed📌 Call phase
duration:
0.00021215155720710754outcome:
passed📌 Teardown phase
duration:
0.00021091662347316742outcome:
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.00031077489256858826outcome:
passed📌 Call phase
duration:
0.00020570214837789536outcome:
passed📌 Teardown phase
duration:
0.00019207503646612167outcome:
passed
↳ Function: test_get_args_parametrized
-
✅ Test 51
params:func="<function <lambda> at 0x7ff22d6fe4c0>", expected_pos=["a", "b"], expected_kw={"c": 3, "d": 4}📌 Parameters
params: func: "<function <lambda> at 0x7ff22d6fe4c0>" expected_pos: ["a", "b"] expected_kw: {"c": 3, "d": 4} id: "<lambda>-expected_pos0-expected_kw0"📌 Setup phase
duration:
0.00033009424805641174outcome:
passed📌 Call phase
duration:
0.00023652706295251846outcome:
passed📌 Teardown phase
duration:
0.00021055527031421661outcome:
passed -
✅ Test 52
params:func="<function <lambda> at 0x7ff22d582430>", expected_pos=[], expected_kw="{'x': 1, 'y': <class 'inspect._empty'>, 'z': 0}"📌 Parameters
params: func: "<function <lambda> at 0x7ff22d582430>" expected_pos: [] expected_kw: "{'x': 1, 'y': <class 'inspect._empty'>, 'z': 0}" id: "<lambda>-expected_pos1-expected_kw1"📌 Setup phase
duration:
0.0003099581226706505outcome:
passed📌 Call phase
duration:
0.0002405056729912758outcome:
passed📌 Teardown phase
duration:
0.00019798055291175842outcome:
passed -
✅ Test 53
params:func="<function <lambda> at 0x7ff22d582550>", expected_pos=[], expected_kw={}📌 Parameters
params: func: "<function <lambda> at 0x7ff22d582550>" expected_pos: [] expected_kw: {} id: "<lambda>-expected_pos2-expected_kw2"📌 Setup phase
duration:
0.00032067112624645233outcome:
passed📌 Call phase
duration:
0.00021272338926792145outcome:
passed📌 Teardown phase
duration:
0.00018978212028741837outcome:
passed
↳ Function: test_signature_visible
-
✅ Test 54
params:func="<function wrap_all at 0x7ff22d582790>", expected_sig="(a, b, d=30, c=10)"📌 Parameters
params: func: "<function wrap_all at 0x7ff22d582790>" expected_sig: "(a, b, d=30, c=10)" id: "wrap_all-(a, b, d=30, c=10)"📌 Setup phase
duration:
0.00027103815227746964outcome:
passed📌 Call phase
duration:
0.00018593110144138336outcome:
passed📌 Teardown phase
duration:
0.0001828884705901146outcome:
passed -
✅ Test 55
params:func="<function wrap_skip at 0x7ff22d582820>", expected_sig="(a, b, c=10, d=20)"📌 Parameters
params: func: "<function wrap_skip at 0x7ff22d582820>" expected_sig: "(a, b, c=10, d=20)" id: "wrap_skip-(a, b, c=10, d=20)"📌 Setup phase
duration:
0.00026676058769226074outcome:
passed📌 Call phase
duration:
0.00020026043057441711outcome:
passed📌 Teardown phase
duration:
0.00017530843615531921outcome:
passed -
✅ Test 56
params:func="<function wrap_ignore_all at 0x7ff22d5828b0>", expected_sig="(x, y, c=10, d=20)"📌 Parameters
params: func: "<function wrap_ignore_all at 0x7ff22d5828b0>" expected_sig: "(x, y, c=10, d=20)" id: "wrap_ignore_all-(x, y, c=10, d=20)"📌 Setup phase
duration:
0.0002529136836528778outcome:
passed📌 Call phase
duration:
0.00020309165120124817outcome:
passed📌 Teardown phase
duration:
0.0001722397282719612outcome:
passed
↳ Function: test_wrapper_behavior
-
✅ Test 57
params:func="<function wrap_all at 0x7ff22d582790>", args=[1, 2, 3], kwargs={}, expected_result=36📌 Parameters
params: func: "<function wrap_all at 0x7ff22d582790>" args: [1, 2, 3] kwargs: {} expected_result: 36 id: "wrap_all-args0-kwargs0-36"📌 Setup phase
duration:
0.00036285538226366043outcome:
passed📌 Call phase
duration:
0.00016771350055933outcome:
passed📌 Teardown phase
duration:
0.00022382475435733795outcome:
passed -
✅ Test 58
params:func="<function wrap_all at 0x7ff22d582790>", args=[1, 2, 3], kwargs={"d": 5}, expected_result=11📌 Parameters
params: func: "<function wrap_all at 0x7ff22d582790>" args: [1, 2, 3] kwargs: {"d": 5} expected_result: 11 id: "wrap_all-args1-kwargs1-11"📌 Setup phase
duration:
0.00035573169589042664outcome:
passed📌 Call phase
duration:
0.00017034169286489487outcome:
passed📌 Teardown phase
duration:
0.0002146698534488678outcome:
passed -
✅ Test 59
params:func="<function wrap_skip at 0x7ff22d582820>", args=[0, 0], kwargs={"c": 3, "d": 4}, expected_result=10📌 Parameters
params: func: "<function wrap_skip at 0x7ff22d582820>" args: [0, 0] kwargs: {"c": 3, "d": 4} expected_result: 10 id: "wrap_skip-args2-kwargs2-10"📌 Setup phase
duration:
0.0003609517589211464outcome:
passed📌 Call phase
duration:
0.00016798079013824463outcome:
passed📌 Teardown phase
duration:
0.00020347535610198975outcome:
passed -
✅ Test 60
params:func="<function wrap_ignore_all at 0x7ff22d5828b0>", args=[0, 0], kwargs={}, expected_result=10📌 Parameters
params: func: "<function wrap_ignore_all at 0x7ff22d5828b0>" args: [0, 0] kwargs: {} expected_result: 10 id: "wrap_ignore_all-args3-kwargs3-10"📌 Setup phase
duration:
0.0003578364849090576outcome:
passed📌 Call phase
duration:
0.0001662345603108406outcome:
passed📌 Teardown phase
duration:
0.00021935626864433289outcome:
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.00038265902549028397outcome:
passed📌 Call phase
duration:
0.0009403182193636894outcome:
passed📌 Teardown phase
duration:
0.00022702571004629135outcome:
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.00039000995457172394outcome:
passed📌 Call phase
duration:
0.0005787787958979607outcome:
passed📌 Teardown phase
duration:
0.00022425036877393723outcome:
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.00037364661693573outcome:
passed📌 Call phase
duration:
0.0005864473059773445outcome:
passed📌 Teardown phase
duration:
0.0002299584448337555outcome:
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.00036581698805093765outcome:
passed📌 Call phase
duration:
0.0006340574473142624outcome:
passed📌 Teardown phase
duration:
0.00022896658629179outcome:
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.0003623850643634796outcome:
passed📌 Call phase
duration:
0.0005762111395597458outcome:
passed📌 Teardown phase
duration:
0.0002396460622549057outcome:
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.00036031007766723633outcome:
passed📌 Call phase
duration:
0.0005736714228987694outcome:
passed📌 Teardown phase
duration:
0.00022218655794858932outcome:
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.0003615785390138626outcome:
passed📌 Call phase
duration:
0.0006015701219439507outcome:
passed📌 Teardown phase
duration:
0.0002196216955780983outcome:
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.0003673657774925232outcome:
passed📌 Call phase
duration:
0.000644410029053688outcome:
passed📌 Teardown phase
duration:
0.0002137366682291031outcome:
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.0003619156777858734outcome:
passed📌 Call phase
duration:
0.0005416637286543846outcome:
passed📌 Teardown phase
duration:
0.00021486543118953705outcome:
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.0003853803500533104outcome:
passed📌 Call phase
duration:
0.0005413498729467392outcome:
passed📌 Teardown phase
duration:
0.00023510493338108063outcome:
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.0003828294575214386outcome:
passed📌 Call phase
duration:
0.0005645314231514931outcome:
passed📌 Teardown phase
duration:
0.00022302009165287018outcome:
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.0003582267090678215outcome:
passed📌 Call phase
duration:
0.0006247460842132568outcome:
passed📌 Teardown phase
duration:
0.00023018848150968552outcome:
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.00036078598350286484outcome:
passed📌 Call phase
duration:
0.0005512749776244164outcome:
passed📌 Teardown phase
duration:
0.00022036582231521606outcome:
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.00036169402301311493outcome:
passed📌 Call phase
duration:
0.0009848019108176231outcome:
passedstdout:
📌 Teardown phase
duration:
0.00024022068828344345outcome:
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.0003797532990574837outcome:
passed📌 Call phase
duration:
0.001112096942961216outcome:
passedstdout:
📌 Teardown phase
duration:
0.00022317282855510712outcome:
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.0003762589767575264outcome:
passed📌 Call phase
duration:
0.0013701794669032097outcome:
passedstdout:
📌 Teardown phase
duration:
0.00023108813911676407outcome:
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.00037401262670755386outcome:
passed📌 Call phase
duration:
0.0009384127333760262outcome:
passedstdout:
📌 Teardown phase
duration:
0.00023195985704660416outcome:
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.00037214066833257675outcome:
passed📌 Call phase
duration:
0.0008952682837843895outcome:
passedstdout:
📌 Teardown phase
duration:
0.00022623687982559204outcome:
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.00037878844887018204outcome:
passed📌 Call phase
duration:
0.0010153250768780708outcome:
passedstdout:
📌 Teardown phase
duration:
0.0002408670261502266outcome:
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.00035778526216745377outcome:
passed📌 Call phase
duration:
0.0009354865178465843outcome:
passedstdout:
📌 Teardown phase
duration:
0.0002293623983860016outcome:
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.00037940405309200287outcome:
passed📌 Call phase
duration:
0.0009743375703692436outcome:
passedstdout:
📌 Teardown phase
duration:
0.000231252983212471outcome:
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.0003654882311820984outcome:
passed📌 Call phase
duration:
0.001085652969777584outcome:
passedstdout:
📌 Teardown phase
duration:
0.0002336828038096428outcome:
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.0003875764086842537outcome:
passed📌 Call phase
duration:
0.001181238330900669outcome:
passedstdout:
📌 Teardown phase
duration:
0.00022102240473031998outcome:
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.00038198381662368774outcome:
passed📌 Call phase
duration:
0.0009475219994783401outcome:
passedstdout:
📌 Teardown phase
duration:
0.0002354048192501068outcome:
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.0003748880699276924outcome:
passed📌 Call phase
duration:
0.0009068846702575684outcome:
passedstdout:
📌 Teardown phase
duration:
0.00023780576884746552outcome:
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.0003738896921277046outcome:
passed📌 Call phase
duration:
0.0011696135625243187outcome:
passedstdout:
📌 Teardown phase
duration:
0.00023040268570184708outcome:
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.0003650262951850891outcome:
passed📌 Call phase
duration:
0.0008730841800570488outcome:
passedstdout:
📌 Teardown phase
duration:
0.0002330755814909935outcome:
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.00036812201142311096outcome:
passed📌 Call phase
duration:
0.0011723591014742851outcome:
passedstdout:
📌 Teardown phase
duration:
0.00022234022617340088outcome:
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.0003777453675866127outcome:
passed📌 Call phase
duration:
0.0009826701134443283outcome:
passedstdout:
📌 Teardown phase
duration:
0.00023012980818748474outcome:
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.00036615505814552307outcome:
passed📌 Call phase
duration:
0.0019166339188814163outcome:
passedstdout:
📌 Teardown phase
duration:
0.0002560131251811981outcome:
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.0003681648522615433outcome:
passed📌 Call phase
duration:
0.0010400991886854172outcome:
passedstdout:
📌 Teardown phase
duration:
0.00022501125931739807outcome:
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.0003785816952586174outcome:
passed📌 Call phase
duration:
0.0009032757952809334outcome:
passedstdout:
📌 Teardown phase
duration:
0.00022925902158021927outcome:
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.0003821961581707001outcome:
passed📌 Call phase
duration:
0.0010723071172833443outcome:
passedstdout:
📌 Teardown phase
duration:
0.0002509467303752899outcome:
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.0003650505095720291outcome:
passed📌 Call phase
duration:
0.0005497457459568977outcome:
passed📌 Teardown phase
duration:
0.00022458937019109726outcome:
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.0003622518852353096outcome:
passed📌 Call phase
duration:
0.0009686397388577461outcome:
passedstdout:
📌 Teardown phase
duration:
0.00023799482733011246outcome:
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.00036313198506832123outcome:
passed📌 Call phase
duration:
0.0008949888870120049outcome:
passedstdout:
📌 Teardown phase
duration:
0.00022853538393974304outcome:
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.00037965644150972366outcome:
passed📌 Call phase
duration:
0.0010055070742964745outcome:
passedstdout:
📌 Teardown phase
duration:
0.00021881423890590668outcome:
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.0004164157435297966outcome:
passed📌 Call phase
duration:
0.0009177085012197495outcome:
passedstdout:
📌 Teardown phase
duration:
0.000261722132563591outcome:
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.0004054950550198555outcome:
passed📌 Call phase
duration:
0.0010517463088035583outcome:
passedstdout:
📌 Teardown phase
duration:
0.0002447301521897316outcome:
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.00042479299008846283outcome:
passed📌 Call phase
duration:
0.0010238001123070717outcome:
passedstdout:
📌 Teardown phase
duration:
0.00024948175996541977outcome:
passed
-
-
📄 test_utils_channels.py
↳ Function: test_load_channels_and_channels_class_with_professional_names
-
✅ Test 101
📌 Setup phase
duration:
0.00017281807959079742outcome:
passed📌 Call phase
duration:
0.0008207084611058235outcome:
passed📌 Teardown phase
duration:
0.00015627779066562653outcome:
passed
-
-
📄 test_utils_config.py
↳ Function: test_config_with_nested_and_list_data
-
✅ Test 102
📌 Setup phase
duration:
0.00016696657985448837outcome:
passed📌 Call phase
duration:
0.0006333198398351669outcome:
passed📌 Teardown phase
duration:
0.00015170034021139145outcome:
passed
↳ Function: test_config_with_strange_and_edge_keys
-
✅ Test 103
📌 Setup phase
duration:
0.00015255901962518692outcome:
passed📌 Call phase
duration:
0.0007587485015392303outcome:
passed📌 Teardown phase
duration:
0.0001439172774553299outcome:
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.000293949618935585outcome:
passed📌 Call phase
duration:
0.00020598992705345154outcome:
passed📌 Teardown phase
duration:
0.00016546063125133514outcome:
passed -
✅ Test 105
params:base_color="blue"📌 Parameters
params: base_color: "blue" id: "blue"📌 Setup phase
duration:
0.00022659357637166977outcome:
passed📌 Call phase
duration:
0.00019112508744001389outcome:
passed📌 Teardown phase
duration:
0.0001695249229669571outcome:
passed -
✅ Test 106
params:base_color="yellow"📌 Parameters
params: base_color: "yellow" id: "yellow"📌 Setup phase
duration:
0.00021371059119701385outcome:
passed📌 Call phase
duration:
0.0001911139115691185outcome:
passed📌 Teardown phase
duration:
0.00016669463366270065outcome:
passed -
✅ Test 107
params:base_color="green"📌 Parameters
params: base_color: "green" id: "green"📌 Setup phase
duration:
0.00020797085016965866outcome:
passed📌 Call phase
duration:
0.00020658038556575775outcome:
passed📌 Teardown phase
duration:
0.00016037095338106155outcome:
passed -
✅ Test 108
params:base_color="cyan"📌 Parameters
params: base_color: "cyan" id: "cyan"📌 Setup phase
duration:
0.00020886026322841644outcome:
passed📌 Call phase
duration:
0.00018760096281766891outcome:
passed📌 Teardown phase
duration:
0.00015003979206085205outcome:
passed -
✅ Test 109
params:base_color="magenta"📌 Parameters
params: base_color: "magenta" id: "magenta"📌 Setup phase
duration:
0.00023902766406536102outcome:
passed📌 Call phase
duration:
0.0001903325319290161outcome:
passed📌 Teardown phase
duration:
0.00015578512102365494outcome:
passed -
✅ Test 110
params:base_color="white"📌 Parameters
params: base_color: "white" id: "white"📌 Setup phase
duration:
0.00021156854927539825outcome:
passed📌 Call phase
duration:
0.0001816367730498314outcome:
passed📌 Teardown phase
duration:
0.00015290826559066772outcome:
passed -
✅ Test 111
params:base_color="black"📌 Parameters
params: base_color: "black" id: "black"📌 Setup phase
duration:
0.00021730177104473114outcome:
passed📌 Call phase
duration:
0.0002718353644013405outcome:
passed📌 Teardown phase
duration:
0.0001602713018655777outcome:
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.0006530731916427612outcome:
passed📌 Call phase
duration:
0.0002981238067150116outcome:
passed📌 Teardown phase
duration:
0.0003024144098162651outcome:
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.0005152067169547081outcome:
passed📌 Call phase
duration:
0.0002786964178085327outcome:
passed📌 Teardown phase
duration:
0.00028225313872098923outcome:
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.0005129557102918625outcome:
passed📌 Call phase
duration:
0.0002697529271245003outcome:
passed📌 Teardown phase
duration:
0.00029466859996318817outcome:
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.0005103135481476784outcome:
passed📌 Call phase
duration:
0.00024676043540239334outcome:
passed📌 Teardown phase
duration:
0.00029258523136377335outcome:
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.0005107549950480461outcome:
passed📌 Call phase
duration:
0.0002537630498409271outcome:
passed📌 Teardown phase
duration:
0.000301373191177845outcome:
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.0004997802898287773outcome:
passed📌 Call phase
duration:
0.0002504689618945122outcome:
passed📌 Teardown phase
duration:
0.000285380519926548outcome:
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.0004985686391592026outcome:
passed📌 Call phase
duration:
0.0002810955047607422outcome:
passed📌 Teardown phase
duration:
0.00027807801961898804outcome:
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.0005162376910448074outcome:
passed📌 Call phase
duration:
0.0002485625445842743outcome:
passed📌 Teardown phase
duration:
0.0002864385023713112outcome:
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.0005174698308110237outcome:
passed📌 Call phase
duration:
0.0002554282546043396outcome:
passed📌 Teardown phase
duration:
0.0004047118127346039outcome:
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.000498596578836441outcome:
passed📌 Call phase
duration:
0.00024946872144937515outcome:
passed📌 Teardown phase
duration:
0.0002883216366171837outcome:
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.0004980312660336494outcome:
passed📌 Call phase
duration:
0.00025851838290691376outcome:
passed📌 Teardown phase
duration:
0.00028061307966709137outcome:
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.0005024420097470284outcome:
passed📌 Call phase
duration:
0.00024313759058713913outcome:
passed📌 Teardown phase
duration:
0.00028270669281482697outcome:
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.0005174996331334114outcome:
passed📌 Call phase
duration:
0.0002836287021636963outcome:
passed📌 Teardown phase
duration:
0.0002887994050979614outcome:
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.0005035605281591415outcome:
passed📌 Call phase
duration:
0.00027819816023111343outcome:
passed📌 Teardown phase
duration:
0.0002708137035369873outcome:
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.0005120811983942986outcome:
passed📌 Call phase
duration:
0.0002739429473876953outcome:
passed📌 Teardown phase
duration:
0.00029023177921772003outcome:
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.0005179671570658684outcome:
passed📌 Call phase
duration:
0.00025549158453941345outcome:
passed📌 Teardown phase
duration:
0.0003219582140445709outcome:
passed
-
-
📄 test_utils_dbusnotify.py
↳ Function: test_notify_create
-
✅ Test 128
📌 Setup phase
duration:
0.000613710843026638outcome:
passed📌 Call phase
duration:
0.0045011043548583984outcome:
passed📌 Teardown phase
duration:
0.00015534646809101105outcome:
passed
↳ Function: test_notify_update
-
✅ Test 129
📌 Setup phase
duration:
0.00017084740102291107outcome:
passed📌 Call phase
duration:
0.015543313696980476outcome:
passed📌 Teardown phase
duration:
0.00015306565910577774outcome:
passed
↳ Function: test_get_server_info
-
✅ Test 130
📌 Setup phase
duration:
0.0001749880611896515outcome:
passed📌 Call phase
duration:
0.000424116849899292outcome:
passed📌 Teardown phase
duration:
0.00014238245785236359outcome:
passed
↳ Function: test_get_capabilities
-
✅ Test 131
📌 Setup phase
duration:
0.00018086843192577362outcome:
passed📌 Call phase
duration:
0.00046929530799388885outcome:
passed📌 Teardown phase
duration:
0.000148039311170578outcome:
passed
↳ Function: test_notify_and_close
-
✅ Test 132
📌 Setup phase
duration:
0.0001743389293551445outcome:
passed📌 Call phase
duration:
0.20394543930888176outcome:
passed📌 Teardown phase
duration:
0.0002113906666636467outcome:
passed
↳ Function: test_notify_invalid_value
-
✅ Test 133
📌 Setup phase
duration:
0.00021319743245840073outcome:
passed📌 Call phase
duration:
0.0005124723538756371outcome:
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: 1756477770.3456113 msecs: 345.6113338470459 relativeCreated: 5805.545806884766 thread: 140679555536384 threadName: MainThread processName: MainProcess process: 4169📌 Teardown phase
duration:
0.00016469042748212814outcome:
passed
↳ Function: test_convert_dbus_strings
-
✅ Test 134
📌 Setup phase
duration:
0.00016268156468868256outcome:
passed📌 Call phase
duration:
0.00020134728401899338outcome:
passed📌 Teardown phase
duration:
0.00013247691094875336outcome:
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.0003861198201775551outcome:
passed📌 Call phase
duration:
0.0010763239115476608outcome:
passed📌 Teardown phase
duration:
0.00022735446691513062outcome:
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.00033854320645332336outcome:
passed📌 Call phase
duration:
0.0008664820343255997outcome:
passed📌 Teardown phase
duration:
0.00020842533558607101outcome:
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.00035458430647850037outcome:
passed📌 Call phase
duration:
0.0009341798722743988outcome:
passed📌 Teardown phase
duration:
0.00021056830883026123outcome:
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.000334165059030056outcome:
passed📌 Call phase
duration:
0.0008381092920899391outcome:
passed📌 Teardown phase
duration:
0.00021441280841827393outcome:
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.00033632759004831314outcome:
passed📌 Call phase
duration:
0.0009035216644406319outcome:
passed📌 Teardown phase
duration:
0.000211433507502079outcome:
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.0003247549757361412outcome:
passed📌 Call phase
duration:
0.00017947889864444733outcome:
passed📌 Teardown phase
duration:
0.0001950794830918312outcome:
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.00038520339876413345outcome:
passed📌 Call phase
duration:
0.00020103249698877335outcome:
passed📌 Teardown phase
duration:
0.00019440241158008575outcome:
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.0003226315602660179outcome:
passed📌 Call phase
duration:
0.00018863752484321594outcome:
passed📌 Teardown phase
duration:
0.0002076542004942894outcome:
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.00030533317476511outcome:
passed📌 Call phase
duration:
0.00017991848289966583outcome:
passed📌 Teardown phase
duration:
0.0001967698335647583outcome:
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.0003668423742055893outcome:
passed📌 Call phase
duration:
0.00019569415599107742outcome:
passed📌 Teardown phase
duration:
0.00019167829304933548outcome:
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.00031865760684013367outcome:
passed📌 Call phase
duration:
0.00018042605370283127outcome:
passed📌 Teardown phase
duration:
0.0001948568969964981outcome:
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.0003130817785859108outcome:
passed📌 Call phase
duration:
0.00018922332674264908outcome:
passed📌 Teardown phase
duration:
0.00018748082220554352outcome:
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.0003100382164120674outcome:
passed📌 Call phase
duration:
0.0001843571662902832outcome:
passed📌 Teardown phase
duration:
0.00018922053277492523outcome:
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.0003093574196100235outcome:
passed📌 Call phase
duration:
0.00017415732145309448outcome:
passed📌 Teardown phase
duration:
0.0002065952867269516outcome:
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.00030670687556266785outcome:
passed📌 Call phase
duration:
0.00022429972887039185outcome:
passed📌 Teardown phase
duration:
0.00019651278853416443outcome:
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.0003228466957807541outcome:
passed📌 Call phase
duration:
0.00020833034068346024outcome:
passed📌 Teardown phase
duration:
0.0001992238685488701outcome:
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.0002689110115170479outcome:
passed📌 Call phase
duration:
0.00017365440726280212outcome:
passed📌 Teardown phase
duration:
0.0001781899482011795outcome:
passed -
✅ Test 154
params:data={}, expected_keys="set()"📌 Parameters
params: data: {} expected_keys: "set()" id: "data1-expected_keys1"📌 Setup phase
duration:
0.000266476534307003outcome:
passed📌 Call phase
duration:
0.00021090637892484665outcome:
passed📌 Teardown phase
duration:
0.00017408281564712524outcome:
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.00036206748336553574outcome:
passed📌 Call phase
duration:
0.00018103048205375671outcome:
passed📌 Teardown phase
duration:
0.00020349491387605667outcome:
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.000349605455994606outcome:
passed📌 Call phase
duration:
0.0002038702368736267outcome:
passed📌 Teardown phase
duration:
0.00020862743258476257outcome:
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.0003486303612589836outcome:
passed📌 Call phase
duration:
0.00018464867025613785outcome:
passed📌 Teardown phase
duration:
0.00021058134734630585outcome:
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.0003755912184715271outcome:
passed📌 Call phase
duration:
0.00019257143139839172outcome:
passed📌 Teardown phase
duration:
0.00021310895681381226outcome:
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.0003506708890199661outcome:
passed📌 Call phase
duration:
0.00020002201199531555outcome:
passed📌 Teardown phase
duration:
0.000208183191716671outcome:
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.00035039521753787994outcome:
passed📌 Call phase
duration:
0.00017487723380327225outcome:
passed📌 Teardown phase
duration:
0.00020670704543590546outcome:
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.0003582611680030823outcome:
passed📌 Call phase
duration:
0.00017560925334692outcome:
passed📌 Teardown phase
duration:
0.00022202730178833008outcome:
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.0003474559634923935outcome:
passed📌 Call phase
duration:
0.00031850673258304596outcome:
passed📌 Teardown phase
duration:
0.0002081235870718956outcome:
passed
-
-
📄 test_utils_dotdir.py
↳ Function: test_dotdir_creation_and_base_exists
-
✅ Test 163
📌 Setup phase
duration:
0.0013211723417043686outcome:
passed📌 Call phase
duration:
0.0002875709906220436outcome:
passed📌 Teardown phase
duration:
0.0002627260982990265outcome:
passed
↳ Function: test_dotdir_repr_returns_path_str
-
✅ Test 164
📌 Setup phase
duration:
0.0006850613281130791outcome:
passed📌 Call phase
duration:
0.00025733746588230133outcome:
passed📌 Teardown phase
duration:
0.00025548506528139114outcome:
passed
↳ Function: test_dotdir_call
-
✅ Test 165
📌 Setup phase
duration:
0.0006932206451892853outcome:
passed📌 Call phase
duration:
0.0004215901717543602outcome:
passed📌 Teardown phase
duration:
0.0002712830901145935outcome:
passed
-
-
📄 test_utils_duo.py
↳ Function: TestPickledDictReal
-
✅ Test 166
📌 Setup phase
duration:
0.00016839057207107544outcome:
passed📌 Call phase
duration:
0.0016323532909154892outcome:
passed📌 Teardown phase
duration:
0.0001728953793644905outcome:
passed -
✅ Test 167
📌 Setup phase
duration:
0.00015478767454624176outcome:
passed📌 Call phase
duration:
0.001439616084098816outcome:
passed📌 Teardown phase
duration:
0.00015738699585199356outcome:
passed
↳ Function: TestSecrets
-
✅ Test 168
📌 Setup phase
duration:
0.0005998583510518074outcome:
passed📌 Call phase
duration:
0.001460033468902111outcome:
passed📌 Teardown phase
duration:
0.0003774752840399742outcome:
passed -
✅ Test 169
📌 Setup phase
duration:
0.0005877818912267685outcome:
passed📌 Call phase
duration:
0.0017737187445163727outcome:
passed📌 Teardown phase
duration:
0.0003776373341679573outcome:
passed -
✅ Test 170
📌 Setup phase
duration:
0.000558982603251934outcome:
passed📌 Call phase
duration:
0.0013063419610261917outcome:
passedstdout:
📌 Teardown phase
duration:
0.00037367548793554306outcome:
passed
↳ Function: test_get_pgroup_raises_if_no_key
-
✅ Test 171
📌 Setup phase
duration:
0.00023130234330892563outcome:
passed📌 Call phase
duration:
0.00047664064913988113outcome:
passed📌 Teardown phase
duration:
0.0001704040914773941outcome:
passed
↳ Function: test_get_pgroup_info_with_props_same_name_and_pi
-
✅ Test 172
📌 Setup phase
duration:
0.00022818148136138916outcome:
passed📌 Call phase
duration:
0.00023368746042251587outcome:
passed📌 Teardown phase
duration:
0.0001665288582444191outcome:
passed
↳ Function: test_get_pgroup_info_with_props_different_pi
-
✅ Test 173
📌 Setup phase
duration:
0.0002155546098947525outcome:
passed📌 Call phase
duration:
0.00020361412316560745outcome:
passed📌 Teardown phase
duration:
0.00017418991774320602outcome:
passed
↳ Function: test_get_pgroup_info_without_props_with_owner
-
✅ Test 174
📌 Setup phase
duration:
0.0002201935276389122outcome:
passed📌 Call phase
duration:
0.0002145133912563324outcome:
passed📌 Teardown phase
duration:
0.00019066780805587769outcome:
passed
↳ Function: test_get_pgroup_info_without_props_no_owner
-
✅ Test 175
📌 Setup phase
duration:
0.00021831132471561432outcome:
passed📌 Call phase
duration:
0.0002131294459104538outcome:
passed📌 Teardown phase
duration:
0.0001600431278347969outcome:
passed
↳ Function: test_get_pgroup_info_mock
-
✅ Test 176
📌 Setup phase
duration:
0.000223611481487751outcome:
passed📌 Call phase
duration:
0.00020184926688671112outcome:
passed📌 Teardown phase
duration:
0.00016480963677167892outcome:
passed
-
-
📄 test_utils_elog.py
↳ Function: test_get_default_elog_instance_with_direct_password_and_real_check
-
✅ Test 177
📌 Setup phase
duration:
0.00016610976308584213outcome:
passed📌 Call phase
duration:
0.019947820343077183outcome:
passed📌 Teardown phase
duration:
0.0001935688778758049outcome:
passed
↳ Function: test_get_default_elog_instance_with_wrong_password_and_real_check
-
✅ Test 178
📌 Setup phase
duration:
0.0001655295491218567outcome:
passed📌 Call phase
duration:
0.005697994492948055outcome:
passed📌 Teardown phase
duration:
0.00016534700989723206outcome:
passed
↳ Function: test_get_default_elog_instance_asks_password
-
✅ Test 179
📌 Setup phase
duration:
0.00017257221043109894outcome:
passed📌 Call phase
duration:
0.01334143616259098outcome:
passedstdout:
Enter elog password for user: robot📌 Teardown phase
duration:
0.00019281823188066483outcome:
passed
↳ Function: test_get_default_elog_with_path_home
-
✅ Test 180
📌 Setup phase
duration:
0.00016067083925008774outcome:
passed📌 Call phase
duration:
0.013367236591875553outcome:
passed📌 Teardown phase
duration:
0.00017429236322641373outcome:
passed
↳ Function: test_screenshot
-
✅ Test 181
📌 Setup phase
duration:
0.00016851536929607391outcome:
passed📌 Call phase
duration:
0.021800009533762932outcome:
passed📌 Teardown phase
duration:
0.0001907162368297577outcome:
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.0003652367740869522outcome:
passed📌 Call phase
duration:
0.00022565480321645737outcome:
passed📌 Teardown phase
duration:
0.00019838847219944outcome:
passed -
✅ Test 183
params:expr="4 - 2", expected=2📌 Parameters
params: expr: "4 - 2" expected: 2 id: "4 - 2-2"📌 Setup phase
duration:
0.00027236901223659515outcome:
passed📌 Call phase
duration:
0.00020578410476446152outcome:
passed📌 Teardown phase
duration:
0.00017831847071647644outcome:
passed -
✅ Test 184
params:expr="3 * 5", expected=15📌 Parameters
params: expr: "3 * 5" expected: 15 id: "3 * 5-15"📌 Setup phase
duration:
0.00027696508914232254outcome:
passed📌 Call phase
duration:
0.00019906461238861084outcome:
passed📌 Teardown phase
duration:
0.00017638131976127625outcome:
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.00027887243777513504outcome:
passed📌 Call phase
duration:
0.00018841587007045746outcome:
passed📌 Teardown phase
duration:
0.00018206238746643066outcome:
passed -
✅ Test 186
params:expr="10 % 3", expected=1📌 Parameters
params: expr: "10 % 3" expected: 1 id: "10 % 3-1"📌 Setup phase
duration:
0.0002671666443347931outcome:
passed📌 Call phase
duration:
0.00020459014922380447outcome:
passed📌 Teardown phase
duration:
0.00017381925135850906outcome:
passed -
✅ Test 187
params:expr="-5", expected=-5📌 Parameters
params: expr: "-5" expected: -5 id: "-5--5"📌 Setup phase
duration:
0.00026337988674640656outcome:
passed📌 Call phase
duration:
0.00019975565373897552outcome:
passed📌 Teardown phase
duration:
0.00018227659165859222outcome:
passed -
✅ Test 188
params:expr="+7", expected=7📌 Parameters
params: expr: "+7" expected: 7 id: "+7-7"📌 Setup phase
duration:
0.0002694008871912956outcome:
passed📌 Call phase
duration:
0.0001852056011557579outcome:
passed📌 Teardown phase
duration:
0.0001994781196117401outcome:
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.0002765608951449394outcome:
passed📌 Call phase
duration:
0.00020458735525608063outcome:
passed📌 Teardown phase
duration:
0.00017820391803979874outcome:
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.0002510230988264084outcome:
passed📌 Call phase
duration:
0.000215187668800354outcome:
passed📌 Teardown phase
duration:
0.0001766793429851532outcome:
passed -
✅ Test 191
params:expr="-(-3)", expected=3📌 Parameters
params: expr: "-(-3)" expected: 3 id: "-(-3)-3"📌 Setup phase
duration:
0.00028380099684000015outcome:
passed📌 Call phase
duration:
0.00019988510757684708outcome:
passed📌 Teardown phase
duration:
0.00017642322927713394outcome:
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.00027497950941324234outcome:
passed📌 Call phase
duration:
0.00020138639956712723outcome:
passed📌 Teardown phase
duration:
0.00018280837684869766outcome:
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.00025658030062913895outcome:
passed📌 Call phase
duration:
0.00022174697369337082outcome:
passed📌 Teardown phase
duration:
0.0001801624894142151outcome:
passed -
✅ Test 194
params:expr="(((3)))", expected=3📌 Parameters
params: expr: "(((3)))" expected: 3 id: "(((3)))-3"📌 Setup phase
duration:
0.0002749999985098839outcome:
passed📌 Call phase
duration:
0.00019823014736175537outcome:
passed📌 Teardown phase
duration:
0.0001712879166007042outcome:
passed -
✅ Test 195
params:expr="-(-(-2))", expected=-2📌 Parameters
params: expr: "-(-(-2))" expected: -2 id: "-(-(-2))--2"📌 Setup phase
duration:
0.00028209853917360306outcome:
passed📌 Call phase
duration:
0.00019878335297107697outcome:
passed📌 Teardown phase
duration:
0.0001911316066980362outcome:
passed -
✅ Test 196
params:expr="3 + +4", expected=7📌 Parameters
params: expr: "3 + +4" expected: 7 id: "3 + +4-7"📌 Setup phase
duration:
0.00025867484509944916outcome:
passed📌 Call phase
duration:
0.00018764380365610123outcome:
passed📌 Teardown phase
duration:
0.0001948811113834381outcome:
passed -
✅ Test 197
params:expr="3 + -4", expected=-1📌 Parameters
params: expr: "3 + -4" expected: -1 id: "3 + -4--1"📌 Setup phase
duration:
0.0002659447491168976outcome:
passed📌 Call phase
duration:
0.00019997544586658478outcome:
passed📌 Teardown phase
duration:
0.00017670821398496628outcome:
passed -
✅ Test 198
params:expr="True + 1", expected=2📌 Parameters
params: expr: "True + 1" expected: 2 id: "True + 1-2"📌 Setup phase
duration:
0.0002788053825497627outcome:
passed📌 Call phase
duration:
0.0001900726929306984outcome:
passed📌 Teardown phase
duration:
0.00017162971198558807outcome:
passed -
✅ Test 199
params:expr="'string'", expected="string"📌 Parameters
params: expr: "'string'" expected: "string" id: "'string'-string"📌 Setup phase
duration:
0.0002752663567662239outcome:
passed📌 Call phase
duration:
0.0001911446452140808outcome:
passed📌 Teardown phase
duration:
0.00020777899771928787outcome:
passed -
✅ Test 200
params:expr="1e1000 * 1e1000", expected=Infinity📌 Parameters
params: expr: "1e1000 * 1e1000" expected: Infinity id: "1e1000 * 1e1000-inf"📌 Setup phase
duration:
0.00026704370975494385outcome:
passed📌 Call phase
duration:
0.0002140868455171585outcome:
passed📌 Teardown phase
duration:
0.00017403718084096909outcome:
passed -
✅ Test 201
params:expr="'a' + 'b'", expected="ab"📌 Parameters
params: expr: "'a' + 'b'" expected: "ab" id: "'a' + 'b'-ab"📌 Setup phase
duration:
0.0002672942355275154outcome:
passed📌 Call phase
duration:
0.0001994529739022255outcome:
passed📌 Teardown phase
duration:
0.0001746881753206253outcome:
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.00026800110936164856outcome:
passed📌 Call phase
duration:
0.00042457226663827896outcome:
passed📌 Teardown phase
duration:
0.00019649602472782135outcome:
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.0002659652382135391outcome:
passed📌 Call phase
duration:
0.0004086587578058243outcome:
passed📌 Teardown phase
duration:
0.00017553381621837616outcome:
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.00031685270369052887outcome:
passed📌 Call phase
duration:
0.0003956044092774391outcome:
passed📌 Teardown phase
duration:
0.00019867345690727234outcome:
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.0002670111134648323outcome:
passed📌 Call phase
duration:
0.0003846576437354088outcome:
passed📌 Teardown phase
duration:
0.00020020641386508942outcome:
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.00027078762650489807outcome:
passed📌 Call phase
duration:
0.0003806566819548607outcome:
passed📌 Teardown phase
duration:
0.00018290523439645767outcome:
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.0002692956477403641outcome:
passed📌 Call phase
duration:
0.00023280177265405655outcome:
passed📌 Teardown phase
duration:
0.00017493125051259995outcome:
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.0002700025215744972outcome:
passed📌 Call phase
duration:
0.0004848809912800789outcome:
passed📌 Teardown phase
duration:
0.0001998450607061386outcome:
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.0002790791913866997outcome:
passed📌 Call phase
duration:
0.000406535342335701outcome:
passed📌 Teardown phase
duration:
0.0001834789291024208outcome:
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.00027641933411359787outcome:
passed📌 Call phase
duration:
0.0002198079600930214outcome:
passed📌 Teardown phase
duration:
0.00019963178783655167outcome:
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.00025933887809515outcome:
passed📌 Call phase
duration:
0.00020574312657117844outcome:
passed📌 Teardown phase
duration:
0.00017981231212615967outcome:
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.00027803797274827957outcome:
passed📌 Call phase
duration:
0.00019801408052444458outcome:
passed📌 Teardown phase
duration:
0.0001747654750943184outcome:
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.00026543810963630676outcome:
passed📌 Call phase
duration:
0.00019646622240543365outcome:
passed📌 Teardown phase
duration:
0.00018107518553733826outcome:
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.0002766549587249756outcome:
passed📌 Call phase
duration:
0.00019334722310304642outcome:
passed📌 Teardown phase
duration:
0.00017393473535776138outcome:
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.00026431772857904434outcome:
passed📌 Call phase
duration:
0.00020783022046089172outcome:
passed📌 Teardown phase
duration:
0.00017255079001188278outcome:
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.00030978210270404816outcome:
passed📌 Call phase
duration:
0.0002347789704799652outcome:
passed📌 Teardown phase
duration:
0.00019191019237041473outcome:
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.00031576864421367645outcome:
passed📌 Call phase
duration:
0.00020376313477754593outcome:
passed📌 Teardown phase
duration:
0.00019507762044668198outcome:
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.000304538756608963outcome:
passed📌 Call phase
duration:
0.0002090809866786003outcome:
passed📌 Teardown phase
duration:
0.0001907534897327423outcome:
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.00032595638185739517outcome:
passed📌 Call phase
duration:
0.00019515957683324814outcome:
passed📌 Teardown phase
duration:
0.00019515585154294968outcome:
passed
-
-
📄 test_utils_exceptions.py
↳ Function: test_chained_exception_various
-
✅ Test 220
params:func="<function cause_key_error at 0x7ff22dec8280>", expected_output="High-level task failed\ncaused by KeyError: 'missing'"📌 Parameters
params: func: "<function cause_key_error at 0x7ff22dec8280>" 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.0002959445118904114outcome:
passed📌 Call phase
duration:
0.00019918754696846008outcome:
passed📌 Teardown phase
duration:
0.00020000431686639786outcome:
passed -
✅ Test 221
params:func="<function cause_index_error at 0x7ff22dec83a0>", expected_output="High-level task failed\ncaused by IndexError: list index out of range"📌 Parameters
params: func: "<function cause_index_error at 0x7ff22dec83a0>" 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.0002664448693394661outcome:
passed📌 Call phase
duration:
0.0001872749999165535outcome:
passed📌 Teardown phase
duration:
0.00017039477825164795outcome:
passed -
✅ Test 222
params:func="<function cause_zero_division at 0x7ff22dec8430>", expected_output="High-level task failed\ncaused by ZeroDivisionError: division by zero"📌 Parameters
params: func: "<function cause_zero_division at 0x7ff22dec8430>" 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.00027643516659736633outcome:
passed📌 Call phase
duration:
0.000189291313290596outcome:
passed📌 Teardown phase
duration:
0.00017309561371803284outcome:
passed -
✅ Test 223
params:func="<function cause_value_error at 0x7ff22dec84c0>", 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 0x7ff22dec84c0>" 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.000264105387032032outcome:
passed📌 Call phase
duration:
0.0001834295690059662outcome:
passed📌 Teardown phase
duration:
0.00018246658146381378outcome:
passed -
✅ Test 224
params:func="<function cause_type_error at 0x7ff22dec8550>", 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 0x7ff22dec8550>" 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.0002707885578274727outcome:
passed📌 Call phase
duration:
0.00019223149865865707outcome:
passed📌 Teardown phase
duration:
0.00017048977315425873outcome:
passed
↳ Function: test_printed_exception
-
✅ Test 225
params:func="<function cause_key_error at 0x7ff22dec8280>", expected_output="KeyError: 'missing'"📌 Parameters
params: func: "<function cause_key_error at 0x7ff22dec8280>" expected_output: "KeyError: 'missing'" id: "cause_key_error-KeyError: 'missing'"📌 Setup phase
duration:
0.0008107619360089302outcome:
passed📌 Call phase
duration:
0.0012675393372774124outcome:
passed📌 Teardown phase
duration:
0.0005426472052931786outcome:
passed -
✅ Test 226
params:func="<function cause_index_error at 0x7ff22dec83a0>", expected_output="IndexError: list index out of range"📌 Parameters
params: func: "<function cause_index_error at 0x7ff22dec83a0>" expected_output: "IndexError: list index out of range" id: "cause_index_error-IndexError: list index out of range"📌 Setup phase
duration:
0.0006547030061483383outcome:
passed📌 Call phase
duration:
0.0008558407425880432outcome:
passed📌 Teardown phase
duration:
0.0005395449697971344outcome:
passed -
✅ Test 227
params:func="<function cause_zero_division at 0x7ff22dec8430>", expected_output="ZeroDivisionError: division by zero"📌 Parameters
params: func: "<function cause_zero_division at 0x7ff22dec8430>" expected_output: "ZeroDivisionError: division by zero" id: "cause_zero_division-ZeroDivisionError: division by zero"📌 Setup phase
duration:
0.0006569903343915939outcome:
passed📌 Call phase
duration:
0.0008780257776379585outcome:
passed📌 Teardown phase
duration:
0.0005732672289013863outcome:
passed -
✅ Test 228
params:func="<function cause_value_error at 0x7ff22dec84c0>", expected_output="ValueError: invalid literal for int() with base 10: 'not_a_number'"📌 Parameters
params: func: "<function cause_value_error at 0x7ff22dec84c0>" 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.0006690174341201782outcome:
passed📌 Call phase
duration:
0.001073417253792286outcome:
passed📌 Teardown phase
duration:
0.0005862349644303322outcome:
passed -
✅ Test 229
params:func="<function cause_type_error at 0x7ff22dec8550>", expected_output="TypeError: can only concatenate str (not \"int\") to str"📌 Parameters
params: func: "<function cause_type_error at 0x7ff22dec8550>" 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.0006729708984494209outcome:
passed📌 Call phase
duration:
0.00107575673609972outcome:
passed📌 Teardown phase
duration:
0.0005575092509388924outcome:
passed
-
-
📄 test_utils_get_adj.py
↳ Function: test_get_adj_success
-
✅ Test 230
📌 Setup phase
duration:
0.00018525682389736176outcome:
passed📌 Call phase
duration:
0.0008099852129817009outcome:
passed📌 Teardown phase
duration:
0.0001639779657125473outcome:
passed
↳ Function: test_get_adj_not_found
-
✅ Test 231
📌 Setup phase
duration:
0.0006454838439822197outcome:
passed📌 Call phase
duration:
0.0010265419259667397outcome:
passed📌 Teardown phase
duration:
0.0005020871758460999outcome:
passed
↳ Function: test_ensure_adjs_mixed
-
✅ Test 232
📌 Setup phase
duration:
0.00016132555902004242outcome:
passed📌 Call phase
duration:
0.0007377509027719498outcome:
passed📌 Teardown phase
duration:
0.00020313914865255356outcome:
passed
↳ Function: test_get_adjs_filter
-
✅ Test 233
📌 Setup phase
duration:
0.00015014410018920898outcome:
passed📌 Call phase
duration:
0.0009237499907612801outcome:
passed📌 Teardown phase
duration:
0.00015973206609487534outcome:
passed
-
-
📄 test_utils_ipy.py
↳ Function: test_devices_repr_fallback_and_ignore
-
✅ Test 234
📌 Setup phase
duration:
0.0004429630935192108outcome:
passed📌 Call phase
duration:
0.00116726104170084outcome:
passedstdout:
test_desc: desc ok test_doc: doc ok test_id: D4 test_name: name ok📌 Teardown phase
duration:
0.0002851272001862526outcome:
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.0006729643791913986outcome:
passed📌 Call phase
duration:
0.0004445100203156471outcome:
passed📌 Teardown phase
duration:
0.00024372898042201996outcome:
passed -
✅ Test 236
params:input_obj="42", expected=42📌 Parameters
params: input_obj: "42" expected: 42 id: "input_obj1-42"📌 Setup phase
duration:
0.000660148449242115outcome:
passed📌 Call phase
duration:
0.0004009539261460304outcome:
passed📌 Teardown phase
duration:
0.0002628639340400696outcome:
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.0006127804517745972outcome:
passed📌 Call phase
duration:
0.000409604050219059outcome:
passed📌 Teardown phase
duration:
0.000225728377699852outcome:
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.0006167348474264145outcome:
passed📌 Call phase
duration:
0.000392707996070385outcome:
passed📌 Teardown phase
duration:
0.00025845132768154144outcome:
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.0006138160824775696outcome:
passed📌 Call phase
duration:
0.0005302745848894119outcome:
passed📌 Teardown phase
duration:
0.00025615282356739044outcome:
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.0006201211363077164outcome:
passed📌 Call phase
duration:
0.0004064459353685379outcome:
passed📌 Teardown phase
duration:
0.0002716481685638428outcome:
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.0006403988227248192outcome:
passed📌 Call phase
duration:
0.000423697754740715outcome:
passed📌 Teardown phase
duration:
0.00021520350128412247outcome:
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.0006404099985957146outcome:
passed📌 Call phase
duration:
0.0005966899916529655outcome:
passed📌 Teardown phase
duration:
0.00023286044597625732outcome:
passed
-
-
📄 test_utils_lazypv.py
↳ Function: test_getattr
-
✅ Test 243
📌 Setup phase
duration:
0.00017320644110441208outcome:
passed📌 Call phase
duration:
0.09125654026865959outcome:
passed📌 Teardown phase
duration:
0.0004577171057462692outcome:
passed
-
-
📄 test_utils_logcfg.py
↳ Function: test_custom_log_outputs
-
✅ Test 244
params:levelname="LONG", logfunc="<function <lambda> at 0x7ff22deac790>", message="This is a LONG message"📌 Parameters
params: levelname: "LONG" logfunc: "<function <lambda> at 0x7ff22deac790>" message: "This is a LONG message" id: "LONG-<lambda>-This is a LONG message"📌 Setup phase
duration:
0.002099227160215378outcome:
passed📌 Call phase
duration:
0.0012709051370620728outcome:
passedstdout:
Captured stderr: '[L 250829 14:29:30 test_utils_logcfg:41] This is a LONG message\n'📌 Teardown phase
duration:
0.00033093802630901337outcome:
passed -
✅ Test 245
params:levelname="ENLARGE", logfunc="<function <lambda> at 0x7ff22deac820>", message="Please ENLARGE this!"📌 Parameters
params: levelname: "ENLARGE" logfunc: "<function <lambda> at 0x7ff22deac820>" message: "Please ENLARGE this!" id: "ENLARGE-<lambda>-Please ENLARGE this!"📌 Setup phase
duration:
0.0004896270111203194outcome:
passed📌 Call phase
duration:
0.0007818890735507011outcome:
passedstdout:
Captured stderr: '[E 250829 14:29:30 test_utils_logcfg:41] Please ENLARGE this!\n'📌 Teardown phase
duration:
0.0002851337194442749outcome:
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.0006533823907375336outcome:
passed📌 Call phase
duration:
0.000879690982401371outcome:
passed📌 Teardown phase
duration:
0.00027964264154434204outcome:
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.0004621446132659912outcome:
passed📌 Call phase
duration:
0.0005261031910777092outcome:
passed📌 Teardown phase
duration:
0.0002607172355055809outcome:
passed
↳ Function: test_ignore_only_by_level
-
✅ Test 249
📌 Setup phase
duration:
0.00030066538602113724outcome:
passed📌 Call phase
duration:
0.0004603806883096695outcome:
passed📌 Teardown phase
duration:
0.0002376604825258255outcome:
passed
↳ Function: test_ignore_only_by_msg
-
✅ Test 250
📌 Setup phase
duration:
0.00029772520065307617outcome:
passed📌 Call phase
duration:
0.00043762195855379105outcome:
passed📌 Teardown phase
duration:
0.00020496919751167297outcome:
passed
↳ Function: test_filter_removed_after_context
-
✅ Test 251
📌 Setup phase
duration:
0.0002929987385869026outcome:
passed📌 Call phase
duration:
0.0003995317965745926outcome:
passed📌 Teardown phase
duration:
0.00021967478096485138outcome:
passed
-
-
📄 test_utils_marker.py
↳ Function: test_format_value_with_units
-
✅ Test 252
📌 Setup phase
duration:
0.00019409693777561188outcome:
passed📌 Call phase
duration:
0.0002226606011390686outcome:
passed📌 Teardown phase
duration:
0.0001399880275130272outcome:
passed
↳ Function: test_format_value_without_units
-
✅ Test 253
📌 Setup phase
duration:
0.00015662424266338348outcome:
passed📌 Call phase
duration:
0.0001881662756204605outcome:
passed📌 Teardown phase
duration:
0.000148027203977108outcome:
passed
↳ Function: test_marker_name_default
-
✅ Test 254
📌 Setup phase
duration:
0.00016082078218460083outcome:
passed📌 Call phase
duration:
0.00030215829610824585outcome:
passed📌 Teardown phase
duration:
0.00015788618475198746outcome:
passed
↳ Function: test_marker_name_custom
-
✅ Test 255
📌 Setup phase
duration:
0.00014912709593772888outcome:
passed📌 Call phase
duration:
0.00018910598009824753outcome:
passed📌 Teardown phase
duration:
0.00014369841665029526outcome:
passed
↳ Function: test_marker_repr_format
-
✅ Test 256
📌 Setup phase
duration:
0.00015098974108695984outcome:
passed📌 Call phase
duration:
0.00023524276912212372outcome:
passed📌 Teardown phase
duration:
0.00014901068061590195outcome:
passed
↳ Function: test_marker_update_changes_value
-
✅ Test 257
📌 Setup phase
duration:
0.00013720151036977768outcome:
passed📌 Call phase
duration:
0.00019790232181549072outcome:
passed📌 Teardown phase
duration:
0.0001345798373222351outcome:
passed
↳ Function: test_marker_update_with_explicit_value
-
✅ Test 258
📌 Setup phase
duration:
0.00013851933181285858outcome:
passed📌 Call phase
duration:
0.00018441304564476013outcome:
passed📌 Teardown phase
duration:
0.00012640003114938736outcome:
passed
↳ Function: test_marker_goto_sets_value_and_returns_result
-
✅ Test 259
📌 Setup phase
duration:
0.00015227962285280228outcome:
passed📌 Call phase
duration:
0.0012631285935640335outcome:
passedstdout:
Going to "Device_TGG at 3.3 V"📌 Teardown phase
duration:
0.00014583952724933624outcome:
passed
↳ Function: test_marker_call_is_alias_of_goto
-
✅ Test 260
📌 Setup phase
duration:
0.00016923435032367706outcome:
passed📌 Call phase
duration:
0.0025560762733221054outcome:
passedstdout:
Going to "Device_TAC at 3.3 V"📌 Teardown phase
duration:
0.00017552170902490616outcome:
passed
↳ Function: test_markers_register_and_access
-
✅ Test 261
📌 Setup phase
duration:
0.00015514995902776718outcome:
passed📌 Call phase
duration:
0.0003532096743583679outcome:
passed📌 Teardown phase
duration:
0.00014913175255060196outcome:
passed
↳ Function: test_markers_repr_contains_all
-
✅ Test 262
📌 Setup phase
duration:
0.0001461561769247055outcome:
passed📌 Call phase
duration:
0.0003826199099421501outcome:
passed📌 Teardown phase
duration:
0.00013441406190395355outcome:
passed
↳ Function: test_marker_registry_dict_is_printable_dict
-
✅ Test 263
📌 Setup phase
duration:
0.00015195365995168686outcome:
passed📌 Call phase
duration:
0.00025424733757972717outcome:
passed📌 Teardown phase
duration:
0.00013406667858362198outcome:
passed
↳ Function: test_markers_getitem_invalid_key_raises
-
✅ Test 264
📌 Setup phase
duration:
0.0001473044976592064outcome:
passed📌 Call phase
duration:
0.0002746088430285454outcome:
passed📌 Teardown phase
duration:
0.0001573357731103897outcome:
passed
-
-
📄 test_utils_metaclasses.py
↳ Function: test_combine_classes_combines_methods
-
✅ Test 265
📌 Setup phase
duration:
0.00017145276069641113outcome:
passed📌 Call phase
duration:
0.00025964435189962387outcome:
passed📌 Teardown phase
duration:
0.00014034751802682877outcome:
passed
↳ Function: test_registryabc_combines_registrymeta_and_abcmeta
-
✅ Test 266
📌 Setup phase
duration:
0.00014693010598421097outcome:
passed📌 Call phase
duration:
0.005294210277497768outcome:
passed📌 Teardown phase
duration:
0.00014783069491386414outcome:
passed
-
-
📄 test_utils_namespace.py
↳ Function: test_namespace_pretty_repr_mixed_and_nested
-
✅ Test 267
📌 Setup phase
duration:
0.0001711081713438034outcome:
passed📌 Call phase
duration:
0.0002958793193101883outcome:
passed📌 Teardown phase
duration:
0.000153983011841774outcome:
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.00042401067912578583outcome:
passed📌 Call phase
duration:
0.018587227910757065outcome:
passed📌 Teardown phase
duration:
0.0002651410177350044outcome:
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.0004254588857293129outcome:
passed📌 Call phase
duration:
0.0004303092136979103outcome:
passed📌 Teardown phase
duration:
0.0002379855141043663outcome:
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.00037837959825992584outcome:
passed📌 Call phase
duration:
0.0004211757332086563outcome:
passed📌 Teardown phase
duration:
0.00022351741790771484outcome:
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.00037810858339071274outcome:
passed📌 Call phase
duration:
0.000406390056014061outcome:
passed📌 Teardown phase
duration:
0.00022484641522169113outcome:
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.0003797179087996483outcome:
passed📌 Call phase
duration:
0.00039676297456026077outcome:
passed📌 Teardown phase
duration:
0.00021936185657978058outcome:
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.00038205739110708237outcome:
passed📌 Call phase
duration:
0.00037691090255975723outcome:
passed📌 Teardown phase
duration:
0.00025046057999134064outcome:
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.0004044892266392708outcome:
passed📌 Call phase
duration:
0.0003927582874894142outcome:
passed📌 Teardown phase
duration:
0.00022972933948040009outcome:
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.00039037223905324936outcome:
passed📌 Call phase
duration:
0.0005173375830054283outcome:
passed📌 Teardown phase
duration:
0.00023627281188964844outcome:
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.00038616638630628586outcome:
passed📌 Call phase
duration:
0.0003851829096674919outcome:
passed📌 Teardown phase
duration:
0.00024213548749685287outcome:
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.0003864867612719536outcome:
passed📌 Call phase
duration:
0.0003861868754029274outcome:
passed📌 Teardown phase
duration:
0.00024349521845579147outcome:
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.0003776019439101219outcome:
passed📌 Call phase
duration:
0.00038283132016658783outcome:
passed📌 Teardown phase
duration:
0.00024340953677892685outcome:
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.00038239266723394394outcome:
passed📌 Call phase
duration:
0.00039785169064998627outcome:
passed📌 Teardown phase
duration:
0.00022890698164701462outcome:
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.0003886288031935692outcome:
passed📌 Call phase
duration:
0.0003801872953772545outcome:
passed📌 Teardown phase
duration:
0.00023134611546993256outcome:
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.00045001786202192307outcome:
passed📌 Call phase
duration:
0.00041268114000558853outcome:
passed📌 Teardown phase
duration:
0.000248507596552372outcome:
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.0004405425861477852outcome:
passed📌 Call phase
duration:
0.0003836369141936302outcome:
passed📌 Teardown phase
duration:
0.00028330087661743164outcome:
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.00043789297342300415outcome:
passed📌 Call phase
duration:
0.00039533060044050217outcome:
passed📌 Teardown phase
duration:
0.00023964978754520416outcome:
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.00044116005301475525outcome:
passed📌 Call phase
duration:
0.0003679785877466202outcome:
passed📌 Teardown phase
duration:
0.0002487599849700928outcome:
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.0004181591793894768outcome:
passed📌 Call phase
duration:
0.0003657247871160507outcome:
passed📌 Teardown phase
duration:
0.00026368536055088043outcome:
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.00042481720447540283outcome:
passed📌 Call phase
duration:
0.00037492066621780396outcome:
passed📌 Teardown phase
duration:
0.00024853646755218506outcome:
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.00043596234172582626outcome:
passed📌 Call phase
duration:
0.00040872301906347275outcome:
passed📌 Teardown phase
duration:
0.00023881904780864716outcome:
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.0004347264766693115outcome:
passed📌 Call phase
duration:
0.00038397498428821564outcome:
passed📌 Teardown phase
duration:
0.0002360055223107338outcome:
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.00041643064469099045outcome:
passed📌 Call phase
duration:
0.0003643389791250229outcome:
passed📌 Teardown phase
duration:
0.00024736952036619186outcome:
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.0004346827045083046outcome:
passed📌 Call phase
duration:
0.0003667101263999939outcome:
passed📌 Teardown phase
duration:
0.00024484749883413315outcome:
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.0004303101450204849outcome:
passed📌 Call phase
duration:
0.0003669923171401024outcome:
passed📌 Teardown phase
duration:
0.0002488875761628151outcome:
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.00045335013419389725outcome:
passed📌 Call phase
duration:
0.000377921387553215outcome:
passed📌 Teardown phase
duration:
0.00024291407316923141outcome:
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.00042233429849147797outcome:
passed📌 Call phase
duration:
0.0004066573455929756outcome:
passed📌 Teardown phase
duration:
0.0002642543986439705outcome:
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.00043127313256263733outcome:
passed📌 Call phase
duration:
0.00037572719156742096outcome:
passed📌 Teardown phase
duration:
0.00024697091430425644outcome:
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.00046383123844861984outcome:
passed📌 Call phase
duration:
0.0003737276419997215outcome:
passed📌 Teardown phase
duration:
0.00025045033544301987outcome:
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.0004164502024650574outcome:
passed📌 Call phase
duration:
0.000392829068005085outcome:
passed📌 Teardown phase
duration:
0.00024093128740787506outcome:
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.00042001809924840927outcome:
passed📌 Call phase
duration:
0.0003846827894449234outcome:
passed📌 Teardown phase
duration:
0.00023684650659561157outcome:
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.000437040813267231outcome:
passed📌 Call phase
duration:
0.00037889834493398666outcome:
passed📌 Teardown phase
duration:
0.00024691876024007797outcome:
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.00041912030428647995outcome:
passed📌 Call phase
duration:
0.00044714566320180893outcome:
passed📌 Teardown phase
duration:
0.0002557765692472458outcome:
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.0004475470632314682outcome:
passed📌 Call phase
duration:
0.0003747483715415001outcome:
passed📌 Teardown phase
duration:
0.0002526547759771347outcome:
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.00041349511593580246outcome:
passed📌 Call phase
duration:
0.0001898081973195076outcome:
passed📌 Teardown phase
duration:
0.0002033887431025505outcome:
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.0003537265583872795outcome:
passed📌 Call phase
duration:
0.00017512403428554535outcome:
passed📌 Teardown phase
duration:
0.00020566489547491074outcome:
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.0003468785434961319outcome:
passed📌 Call phase
duration:
0.0001671668142080307outcome:
passed📌 Teardown phase
duration:
0.00020828377455472946outcome:
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.00034970231354236603outcome:
passed📌 Call phase
duration:
0.00016839709132909775outcome:
passed📌 Teardown phase
duration:
0.00020909123122692108outcome:
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.00034890323877334595outcome:
passed📌 Call phase
duration:
0.00017987284809350967outcome:
passed📌 Teardown phase
duration:
0.0002088705077767372outcome:
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.0003755306825041771outcome:
passed📌 Call phase
duration:
0.0003229016438126564outcome:
passed📌 Teardown phase
duration:
0.00022124778479337692outcome:
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.0003737136721611023outcome:
passed📌 Call phase
duration:
0.00032459571957588196outcome:
passed📌 Teardown phase
duration:
0.00029522646218538284outcome:
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.000445045530796051outcome:
passed📌 Call phase
duration:
0.0004441412165760994outcome:
passed📌 Teardown phase
duration:
0.0002778284251689911outcome:
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.00043841637670993805outcome:
passed📌 Call phase
duration:
0.00035262107849121094outcome:
passed📌 Teardown phase
duration:
0.0002772640436887741outcome:
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.0003285808488726616outcome:
passed📌 Call phase
duration:
0.00021083839237689972outcome:
passed📌 Teardown phase
duration:
0.00019966810941696167outcome:
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.00034592021256685257outcome:
passed📌 Call phase
duration:
0.00018093455582857132outcome:
passed📌 Teardown phase
duration:
0.00020715966820716858outcome:
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.00033315643668174744outcome:
passed📌 Call phase
duration:
0.00017423927783966064outcome:
passed📌 Teardown phase
duration:
0.0002052895724773407outcome:
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.0002772342413663864outcome:
passed📌 Call phase
duration:
0.00018464308232069016outcome:
passed📌 Teardown phase
duration:
0.00018364004790782928outcome:
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.0002967705950140953outcome:
passed📌 Call phase
duration:
0.00018029194325208664outcome:
passed📌 Teardown phase
duration:
0.00017709098756313324outcome:
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.000257798470556736outcome:
passed📌 Call phase
duration:
0.0001705242320895195outcome:
passed📌 Teardown phase
duration:
0.00018946360796689987outcome:
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.000283154658973217outcome:
passed📌 Call phase
duration:
0.00017669983208179474outcome:
passed📌 Teardown phase
duration:
0.0001851506531238556outcome:
passed -
✅ Test 317
params:val=[1, 2, 3], expected=[]📌 Parameters
params: val: [1, 2, 3] expected: [] id: "val1-expected1"📌 Setup phase
duration:
0.0002788528800010681outcome:
passed📌 Call phase
duration:
0.0001753373071551323outcome:
passed📌 Teardown phase
duration:
0.0001941099762916565outcome:
passed -
✅ Test 318
params:val=42, expected=[]📌 Parameters
params: val: 42 expected: [] id: "42-expected2"📌 Setup phase
duration:
0.00027565285563468933outcome:
passed📌 Call phase
duration:
0.00017342902719974518outcome:
passed📌 Teardown phase
duration:
0.00017306115478277206outcome:
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.00026604626327753067outcome:
passed📌 Call phase
duration:
0.00016287993639707565outcome:
passed📌 Teardown phase
duration:
0.00019867438822984695outcome:
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.0002866862341761589outcome:
passed📌 Call phase
duration:
0.0001750662922859192outcome:
passed📌 Teardown phase
duration:
0.0001706322655081749outcome:
passed -
✅ Test 321
params:val=42, expected=false📌 Parameters
params: val: 42 expected: false id: "42-False"📌 Setup phase
duration:
0.00027836672961711884outcome:
passed📌 Call phase
duration:
0.00016882456839084625outcome:
passed📌 Teardown phase
duration:
0.00017252471297979355outcome:
passed
-
-
📄 test_utils_path.py
↳ Function: test_can_create_all_files_user_says_yes
-
✅ Test 322
📌 Setup phase
duration:
0.00017738156020641327outcome:
passed📌 Call phase
duration:
0.0012006210163235664outcome:
passedstdout:
Deleting "/tmp/tmpb8tr_f13/a.txt". Deleting "/tmp/tmpb8tr_f13/c.txt".📌 Teardown phase
duration:
0.00015255063772201538outcome:
passed
↳ Function: test_can_create_all_files_user_says_no
-
✅ Test 323
📌 Setup phase
duration:
0.00014948472380638123outcome:
passed📌 Call phase
duration:
0.0005303900688886642outcome:
passed📌 Teardown phase
duration:
0.00014776643365621567outcome:
passed
↳ Function: test_make_missing_dir_creates_folder
-
✅ Test 324
📌 Setup phase
duration:
0.0001499578356742859outcome:
passed📌 Call phase
duration:
0.0009507928043603897outcome:
passedstdout:
Directory "/tmp/tmpexb_5c4c/nested/dir" does not exist, creating it...📌 Teardown phase
duration:
0.00016120821237564087outcome:
passed
↳ Function: test_glob_files_returns_matching_files_only
-
✅ Test 325
📌 Setup phase
duration:
0.00021394062787294388outcome:
passed📌 Call phase
duration:
0.002163897268474102outcome:
passed📌 Teardown phase
duration:
0.0001588156446814537outcome:
passed
↳ Function: test_filter_files_excludes_directories
-
✅ Test 326
📌 Setup phase
duration:
0.0001665959134697914outcome:
passed📌 Call phase
duration:
0.0006896685808897018outcome:
passed📌 Teardown phase
duration:
0.00014948006719350815outcome:
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.0007097050547599792outcome:
passed📌 Call phase
duration:
0.0004199240356683731outcome:
passed📌 Teardown phase
duration:
0.00021142419427633286outcome:
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.0006110435351729393outcome:
passed📌 Call phase
duration:
0.0003584921360015869outcome:
passed📌 Teardown phase
duration:
0.00019405316561460495outcome:
passed -
✅ Test 329
params:test_obj="simple string"📌 Parameters
params: test_obj: "simple string" id: "simple string"📌 Setup phase
duration:
0.0005911141633987427outcome:
passed📌 Call phase
duration:
0.0003112303093075752outcome:
passed📌 Teardown phase
duration:
0.00019168667495250702outcome:
passed -
✅ Test 330
params:test_obj=42📌 Parameters
params: test_obj: 42 id: "42"📌 Setup phase
duration:
0.0006253188475966454outcome:
passed📌 Call phase
duration:
0.0003080209717154503outcome:
passed📌 Teardown phase
duration:
0.00020928774029016495outcome:
passed -
✅ Test 331
params:test_obj=3.14159📌 Parameters
params: test_obj: 3.14159 id: "3.14159"📌 Setup phase
duration:
0.0005923733115196228outcome:
passed📌 Call phase
duration:
0.0003219917416572571outcome:
passed📌 Teardown phase
duration:
0.00021657627075910568outcome:
passed -
✅ Test 332
params:test_obj=[true, false, null]📌 Parameters
params: test_obj: [true, false, null] id: "test_obj5"📌 Setup phase
duration:
0.0005557211115956306outcome:
passed📌 Call phase
duration:
0.0003129029646515846outcome:
passed📌 Teardown phase
duration:
0.00020993128418922424outcome:
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.0005608592182397842outcome:
passed📌 Call phase
duration:
0.0003259265795350075outcome:
passed📌 Teardown phase
duration:
0.00018765777349472046outcome:
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.0003093872219324112outcome:
passed📌 Call phase
duration:
0.00020637642592191696outcome:
passed📌 Teardown phase
duration:
0.00024269241839647293outcome:
passed -
✅ Test 335
params:seq=[], expected=0📌 Parameters
params: seq: [] expected: 0 id: "seq1-0"📌 Setup phase
duration:
0.00031349994242191315outcome:
passed📌 Call phase
duration:
0.00019362010061740875outcome:
passed📌 Teardown phase
duration:
0.00017440598458051682outcome:
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.00026848725974559784outcome:
passed📌 Call phase
duration:
0.00017878413200378418outcome:
passed📌 Teardown phase
duration:
0.00017298851162195206outcome:
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.0002639899030327797outcome:
passed📌 Call phase
duration:
0.00017978157848119736outcome:
passed📌 Teardown phase
duration:
0.00019387342035770416outcome:
passed
↳ Function: test_strlen
-
✅ Test 338
params:value=42, expected=2📌 Parameters
params: value: 42 expected: 2 id: "42-2"📌 Setup phase
duration:
0.0002758204936981201outcome:
passed📌 Call phase
duration:
0.0001815417781472206outcome:
passed📌 Teardown phase
duration:
0.00017030443996191025outcome:
passed -
✅ Test 339
params:value="hello", expected=5📌 Parameters
params: value: "hello" expected: 5 id: "hello-5"📌 Setup phase
duration:
0.00026869215071201324outcome:
passed📌 Call phase
duration:
0.0001755477860569954outcome:
passed📌 Teardown phase
duration:
0.0001790085807442665outcome:
passed -
✅ Test 340
params:value=false, expected=5📌 Parameters
params: value: false expected: 5 id: "False-5"📌 Setup phase
duration:
0.0002614809200167656outcome:
passed📌 Call phase
duration:
0.00016298238188028336outcome:
passed📌 Teardown phase
duration:
0.0002009822055697441outcome:
passed -
✅ Test 341
params:value=null, expected=4📌 Parameters
params: value: null expected: 4 id: "None-4"📌 Setup phase
duration:
0.00026525184512138367outcome:
passed📌 Call phase
duration:
0.00016768276691436768outcome:
passed📌 Teardown phase
duration:
0.0001916429027915001outcome:
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.0002924855798482895outcome:
passed📌 Call phase
duration:
0.00021623075008392334outcome:
passed📌 Teardown phase
duration:
0.0001758132129907608outcome:
passed -
✅ Test 343
params:value={"a": 1}, expected=8📌 Parameters
params: value: {"a": 1} expected: 8 id: "value5-8"📌 Setup phase
duration:
0.00027130264788866043outcome:
passed📌 Call phase
duration:
0.0001748800277709961outcome:
passed📌 Teardown phase
duration:
0.00019698776304721832outcome:
passed -
✅ Test 344
params:value=[1, 2], expected=6📌 Parameters
params: value: [1, 2] expected: 6 id: "value6-6"📌 Setup phase
duration:
0.0002678418532013893outcome:
passed📌 Call phase
duration:
0.00017650611698627472outcome:
passed📌 Teardown phase
duration:
0.00017099548131227493outcome:
passed -
✅ Test 345
params:value="", expected=0📌 Parameters
params: value: "" expected: 0 id: "-0"📌 Setup phase
duration:
0.00025333650410175323outcome:
passed📌 Call phase
duration:
0.00016122963279485703outcome:
passed📌 Teardown phase
duration:
0.00018020626157522202outcome:
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.00025475770235061646outcome:
passed📌 Call phase
duration:
0.00018455460667610168outcome:
passed📌 Teardown phase
duration:
0.00018621142953634262outcome:
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.00026211608201265335outcome:
passed📌 Call phase
duration:
0.00018842797726392746outcome:
passed📌 Teardown phase
duration:
0.00017251446843147278outcome:
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.00028814375400543213outcome:
passed📌 Call phase
duration:
0.00018636975437402725outcome:
passed📌 Teardown phase
duration:
0.0001917574554681778outcome:
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.0003961976617574692outcome:
passed📌 Call phase
duration:
0.00019409041851758957outcome:
passed📌 Teardown phase
duration:
0.00017583556473255157outcome:
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.0002864813432097435outcome:
passed📌 Call phase
duration:
0.00018732622265815735outcome:
passed📌 Teardown phase
duration:
0.00017605815082788467outcome:
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.0002751881256699562outcome:
passed📌 Call phase
duration:
0.0001852838322520256outcome:
passed📌 Teardown phase
duration:
0.00017431657761335373outcome:
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.00025607645511627197outcome:
passed📌 Call phase
duration:
0.00016617309302091599outcome:
passed📌 Teardown phase
duration:
0.00019603315740823746outcome:
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.00028991326689720154outcome:
passed📌 Call phase
duration:
0.0001872815191745758outcome:
passed📌 Teardown phase
duration:
0.00018112827092409134outcome:
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.00026667769998311996outcome:
passed📌 Call phase
duration:
0.00018095504492521286outcome:
passed📌 Teardown phase
duration:
0.00017323344945907593outcome:
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.0003264769911766052outcome:
passed📌 Call phase
duration:
0.00017726793885231018outcome:
passed📌 Teardown phase
duration:
0.00021308660507202148outcome:
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.0003101648762822151outcome:
passed📌 Call phase
duration:
0.0001767342910170555outcome:
passed📌 Teardown phase
duration:
0.00019750744104385376outcome:
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.0003101769834756851outcome:
passed📌 Call phase
duration:
0.0001773778349161148outcome:
passed📌 Teardown phase
duration:
0.0001896694302558899outcome:
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.00031092483550310135outcome:
passed📌 Call phase
duration:
0.00017164461314678192outcome:
passed📌 Teardown phase
duration:
0.000227317214012146outcome:
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.00034597795456647873outcome:
passed📌 Call phase
duration:
0.00020581018179655075outcome:
passed📌 Teardown phase
duration:
0.0001855175942182541outcome:
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.0003358377143740654outcome:
passed📌 Call phase
duration:
0.00019180774688720703outcome:
passed📌 Teardown phase
duration:
0.00019667204469442368outcome:
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.00033485889434814453outcome:
passed📌 Call phase
duration:
0.00017799343913793564outcome:
passed📌 Teardown phase
duration:
0.0002026902511715889outcome:
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.00031079258769750595outcome:
passed📌 Call phase
duration:
0.00019395537674427032outcome:
passed📌 Teardown phase
duration:
0.00018723402172327042outcome:
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.0003193458542227745outcome:
passed📌 Call phase
duration:
0.00017725955694913864outcome:
passed📌 Teardown phase
duration:
0.00019022822380065918outcome:
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.0003022206947207451outcome:
passed📌 Call phase
duration:
0.00017120316624641418outcome:
passed📌 Teardown phase
duration:
0.0002070171758532524outcome:
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.00031044986099004745outcome:
passed📌 Call phase
duration:
0.00019241217523813248outcome:
passed📌 Teardown phase
duration:
0.00018591247498989105outcome:
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.00030350685119628906outcome:
passed📌 Call phase
duration:
0.00017996877431869507outcome:
passed📌 Teardown phase
duration:
0.00020615849643945694outcome:
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.0003119101747870445outcome:
passed📌 Call phase
duration:
0.00017663929611444473outcome:
passed📌 Teardown phase
duration:
0.00019838567823171616outcome:
passed -
✅ Test 368
params:widths=[2, 3], line="=", expected="== ==="📌 Parameters
params: widths: [2, 3] line: "=" expected: "== ===" id: "widths1-=-== ==="📌 Setup phase
duration:
0.0003039175644516945outcome:
passed📌 Call phase
duration:
0.00016752444207668304outcome:
passed📌 Teardown phase
duration:
0.00019629206508398056outcome:
passed -
✅ Test 369
params:widths=[5, 2], line="*", expected="***** **"📌 Parameters
params: widths: [5, 2] line: "*" expected: "***** **" id: "widths2-*-***** **"📌 Setup phase
duration:
0.0003085741773247719outcome:
passed📌 Call phase
duration:
0.00017403066158294678outcome:
passed📌 Teardown phase
duration:
0.00018516182899475098outcome:
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.00031591206789016724outcome:
passed📌 Call phase
duration:
0.0002580750733613968outcome:
passed📌 Teardown phase
duration:
0.0002053491771221161outcome:
passed
↳ Function: test_printable_dict_of_dicts
-
✅ Test 371
📌 Setup phase
duration:
0.00014659017324447632outcome:
passed📌 Call phase
duration:
0.00029401853680610657outcome:
passed📌 Teardown phase
duration:
0.0001405365765094757outcome:
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.00033455807715654373outcome:
passed📌 Call phase
duration:
0.0008006831631064415outcome:
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.00024265237152576447outcome:
passed
-
-
📄 test_utils_rangebar.py
↳ Function: test_full_progress_bar
-
✅ Test 373
📌 Setup phase
duration:
0.0003461269661784172outcome:
passed📌 Call phase
duration:
0.00048228073865175247outcome:
passed📌 Teardown phase
duration:
0.00022224709391593933outcome:
passed
↳ Function: test_half_progress_bar
-
✅ Test 374
📌 Setup phase
duration:
0.0003078728914260864outcome:
passed📌 Call phase
duration:
0.0003254292532801628outcome:
passed📌 Teardown phase
duration:
0.00021565239876508713outcome:
passed
↳ Function: test_zero_progress_bar
-
✅ Test 375
📌 Setup phase
duration:
0.00026684533804655075outcome:
passed📌 Call phase
duration:
0.0002847304567694664outcome:
passed📌 Teardown phase
duration:
0.0002052541822195053outcome:
passed
↳ Function: test_overflow_bar
-
✅ Test 376
📌 Setup phase
duration:
0.00032966770231723785outcome:
passed📌 Call phase
duration:
0.00029791705310344696outcome:
passed📌 Teardown phase
duration:
0.0001992722973227501outcome:
passed
↳ Function: test_underflow_bar
-
✅ Test 377
📌 Setup phase
duration:
0.0002900781109929085outcome:
passed📌 Call phase
duration:
0.00037542078644037247outcome:
passed📌 Teardown phase
duration:
0.0002041952684521675outcome:
passed
↳ Function: test_repr
-
✅ Test 378
📌 Setup phase
duration:
0.0001474078744649887outcome:
passed📌 Call phase
duration:
0.00020192936062812805outcome:
passed📌 Teardown phase
duration:
0.00015292782336473465outcome:
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.0004069404676556587outcome:
passed📌 Call phase
duration:
0.00027348659932613373outcome:
passed📌 Teardown phase
duration:
0.0002485103905200958outcome:
passed -
✅ Test 380
params:value=10, expected_bar_part="█ "📌 Parameters
params: value: 10 expected_bar_part: "█ " id: "10-\\u2588 "📌 Setup phase
duration:
0.00038021523505449295outcome:
passed📌 Call phase
duration:
0.00029820483177900314outcome:
passed📌 Teardown phase
duration:
0.0002611204981803894outcome:
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.0003912588581442833outcome:
passed📌 Call phase
duration:
0.0002789534628391266outcome:
passed📌 Teardown phase
duration:
0.00024550966918468475outcome:
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.00036078598350286484outcome:
passed📌 Call phase
duration:
0.00029414985328912735outcome:
passed📌 Teardown phase
duration:
0.00024185329675674438outcome:
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.0003667408600449562outcome:
passed📌 Call phase
duration:
0.000299990177154541outcome:
passed📌 Teardown phase
duration:
0.0002438332885503769outcome:
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.00038531795144081116outcome:
passed📌 Call phase
duration:
0.0002777138724923134outcome:
passed📌 Teardown phase
duration:
0.0002482011914253235outcome:
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.0003970405086874962outcome:
passed📌 Call phase
duration:
0.00036768242716789246outcome:
passed📌 Teardown phase
duration:
0.0003193756565451622outcome:
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.0006005512550473213outcome:
passed📌 Call phase
duration:
0.00036290474236011505outcome:
passed📌 Teardown phase
duration:
0.0002946704626083374outcome:
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.00045424792915582657outcome:
passed📌 Call phase
duration:
0.00042562559247016907outcome:
passed📌 Teardown phase
duration:
0.00026709679514169693outcome:
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.00039003416895866394outcome:
passed📌 Call phase
duration:
0.000299614854156971outcome:
passed📌 Teardown phase
duration:
0.00024267751723527908outcome:
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.00039542000740766525outcome:
passed📌 Call phase
duration:
0.0002992255613207817outcome:
passed📌 Teardown phase
duration:
0.00025778356939554214outcome:
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.0003454992547631264outcome:
passed📌 Call phase
duration:
0.00020577199757099152outcome:
passed📌 Teardown phase
duration:
0.00020051002502441406outcome:
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.0003618597984313965outcome:
passed📌 Call phase
duration:
0.0002527078613638878outcome:
passed📌 Teardown phase
duration:
0.00023212376981973648outcome:
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.0003946460783481598outcome:
passed📌 Call phase
duration:
0.00024228263646364212outcome:
passed📌 Teardown phase
duration:
0.00024183280766010284outcome:
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.000323684886097908outcome:
passed📌 Call phase
duration:
0.000237208791077137outcome:
passed📌 Teardown phase
duration:
0.00018207915127277374outcome:
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.00028076861053705215outcome:
passed📌 Call phase
duration:
0.00017298012971878052outcome:
passed📌 Teardown phase
duration:
0.0001898445188999176outcome:
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.0002672336995601654outcome:
passed📌 Call phase
duration:
0.0001959875226020813outcome:
passed📌 Teardown phase
duration:
0.00020429957658052444outcome:
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.000277484767138958outcome:
passed📌 Call phase
duration:
0.00018562935292720795outcome:
passed📌 Teardown phase
duration:
0.0001711864024400711outcome:
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.00027387402951717377outcome:
passed📌 Call phase
duration:
0.00019623897969722748outcome:
passed📌 Teardown phase
duration:
0.00018841493874788284outcome:
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.0002755299210548401outcome:
passed📌 Call phase
duration:
0.00018528848886489868outcome:
passed📌 Teardown phase
duration:
0.00018887687474489212outcome:
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.00035373587161302567outcome:
passed📌 Call phase
duration:
0.0001998990774154663outcome:
passed📌 Teardown phase
duration:
0.00017921999096870422outcome:
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.0002625267952680588outcome:
passed📌 Call phase
duration:
0.0001752413809299469outcome:
passed📌 Teardown phase
duration:
0.00019050948321819305outcome:
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.000284537672996521outcome:
passed📌 Call phase
duration:
0.00019336864352226257outcome:
passed📌 Teardown phase
duration:
0.00017999205738306046outcome:
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.0002688895910978317outcome:
passed📌 Call phase
duration:
0.00018330570310354233outcome:
passed📌 Teardown phase
duration:
0.0001783100888133049outcome:
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.0002909163013100624outcome:
passed📌 Call phase
duration:
0.00018565822392702103outcome:
passed📌 Teardown phase
duration:
0.00018251221626996994outcome:
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.00028883665800094604outcome:
passed📌 Call phase
duration:
0.0001863250508904457outcome:
passed📌 Teardown phase
duration:
0.00018189940601587296outcome:
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.00028276629745960236outcome:
passed📌 Call phase
duration:
0.00017450004816055298outcome:
passed📌 Teardown phase
duration:
0.00020004715770483017outcome:
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.00026935432106256485outcome:
passed📌 Call phase
duration:
0.00018459651619195938outcome:
passed📌 Teardown phase
duration:
0.0001700008288025856outcome:
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.0002512335777282715outcome:
passed📌 Call phase
duration:
0.00018326006829738617outcome:
passed📌 Teardown phase
duration:
0.000181637704372406outcome:
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.00027825217694044113outcome:
passed📌 Call phase
duration:
0.00017506815493106842outcome:
passed📌 Teardown phase
duration:
0.0001877499744296074outcome:
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.000275283120572567outcome:
passed📌 Call phase
duration:
0.0001934487372636795outcome:
passed📌 Teardown phase
duration:
0.00017289258539676666outcome:
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.00027221813797950745outcome:
passed📌 Call phase
duration:
0.00018877536058425903outcome:
passed📌 Teardown phase
duration:
0.00017844513058662415outcome:
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.0002705315127968788outcome:
passed📌 Call phase
duration:
0.0001816730946302414outcome:
passed📌 Teardown phase
duration:
0.0001710718497633934outcome:
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.00027082767337560654outcome:
passed📌 Call phase
duration:
0.0001792609691619873outcome:
passed📌 Teardown phase
duration:
0.00016742758452892303outcome:
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.00027149729430675507outcome:
passed📌 Call phase
duration:
0.0001760302111506462outcome:
passed📌 Teardown phase
duration:
0.00019385479390621185outcome:
passed
-
-
📄 test_utils_registry.py
↳ Function: test_metaclass_creates_weakset
-
✅ Test 414
📌 Setup phase
duration:
0.00016309693455696106outcome:
passed📌 Call phase
duration:
0.0006811777129769325outcome:
passed📌 Teardown phase
duration:
0.00017668120563030243outcome:
passed
↳ Function: test_metaclass_tracks_instances
-
✅ Test 415
📌 Setup phase
duration:
0.00015047937631607056outcome:
passed📌 Call phase
duration:
0.0002678651362657547outcome:
passed📌 Teardown phase
duration:
0.00013743899762630463outcome:
passed
↳ Function: test_registry_inheritance
-
✅ Test 416
📌 Setup phase
duration:
0.00028181448578834534outcome:
passed📌 Call phase
duration:
0.0006290003657341003outcome:
passed📌 Teardown phase
duration:
0.0001826053485274315outcome:
passed
↳ Function: test_instance_tracking
-
✅ Test 417
📌 Setup phase
duration:
0.00021743029356002808outcome:
passed📌 Call phase
duration:
0.0002521127462387085outcome:
passed📌 Teardown phase
duration:
0.0001702466979622841outcome:
passed
↳ Function: test_collect_instances_recursive
-
✅ Test 418
📌 Setup phase
duration:
0.00021940097212791443outcome:
passed📌 Call phase
duration:
0.0012285150587558746outcome:
passed📌 Teardown phase
duration:
0.00017547514289617538outcome:
passed
↳ Function: test_instances_function
-
✅ Test 419
📌 Setup phase
duration:
0.00022906437516212463outcome:
passed📌 Call phase
duration:
0.0009283581748604774outcome:
passed📌 Teardown phase
duration:
0.00017120223492383957outcome:
passed
↳ Function: test_non_registry_class_error
-
✅ Test 420
📌 Setup phase
duration:
0.0001662829890847206outcome:
passed📌 Call phase
duration:
0.0002398984506726265outcome:
passed📌 Teardown phase
duration:
0.00016070809215307236outcome:
passed
↳ Function: test_signature_preservation
-
✅ Test 421
📌 Setup phase
duration:
0.00014763511717319489outcome:
passed📌 Call phase
duration:
0.00030951015651226044outcome:
passed📌 Teardown phase
duration:
0.00013553164899349213outcome:
passed
-
-
📄 test_utils_richcfg.py
↳ Function: test_rich_inspector_outputs_more_than_builtin
-
✅ Test 422
📌 Setup phase
duration:
0.000287017785012722outcome:
passed📌 Call phase
duration:
0.09381955396384001outcome:
passedstdout:
╭─ user = <test_utils_richcfg.User object at 0x7ff22d79b700> ─╮ │ Represents a user in the system. │ │ │ │ ╭─────────────────────────────────────────────────────────╮ │ │ │ <test_utils_richcfg.User object at 0x7ff22d79b700> │ │ │ ╰─────────────────────────────────────────────────────────╯ │ │ │ │ age = 30 │ │ name = 'Alice' │ │ role = 'admin' │ │ greet = def greet(): Returns a welcome message. │ ╰─────────────────────────────────────────────────────────────╯ Type: User String form: <test_utils_richcfg.User object at 0x7ff22d79b370> 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.0002944711595773697outcome:
passed
-
-
📄 test_utils_run_later.py
↳ Function: test_init_and_repr
-
✅ Test 423
📌 Setup phase
duration:
0.00020617526024580002outcome:
passed📌 Call phase
duration:
0.00028071925044059753outcome:
passed📌 Teardown phase
duration:
0.00014116987586021423outcome:
passed
↳ Function: test_call
-
✅ Test 424
📌 Setup phase
duration:
0.00016448646783828735outcome:
passed📌 Call phase
duration:
0.00018974393606185913outcome:
passed📌 Teardown phase
duration:
0.00015764310956001282outcome:
passed
↳ Function: test_matmul_with_string
-
✅ Test 425
📌 Setup phase
duration:
0.00015765894204378128outcome:
passed📌 Call phase
duration:
0.00021298229694366455outcome:
passed📌 Teardown phase
duration:
0.0001370096579194069outcome:
passed
↳ Function: test_matmul_with_list
-
✅ Test 426
📌 Setup phase
duration:
0.00013845693320035934outcome:
passed📌 Call phase
duration:
0.00018109381198883057outcome:
passed📌 Teardown phase
duration:
0.0001294957473874092outcome:
passed
↳ Function: test_matmul_with_single_int
-
✅ Test 427
📌 Setup phase
duration:
0.00013914424926042557outcome:
passed📌 Call phase
duration:
0.00019731372594833374outcome:
passed📌 Teardown phase
duration:
0.0001327982172369957outcome:
passed
↳ Function: test_run_at_future_triggered_and_logs
-
✅ Test 428
📌 Setup phase
duration:
0.00032721739262342453outcome:
passed📌 Call phase
duration:
0.2058851756155491outcome:
passed📌 Teardown phase
duration:
0.0003766091540455818outcome:
passed
↳ Function: test_run_at_already_past
-
✅ Test 429
📌 Setup phase
duration:
0.00035562459379434586outcome:
passed📌 Call phase
duration:
0.00039022043347358704outcome:
passed📌 Teardown phase
duration:
0.00022755935788154602outcome:
passed
↳ Function: test_run_in_future_triggered_and_logs
-
✅ Test 430
📌 Setup phase
duration:
0.0002947421744465828outcome:
passed📌 Call phase
duration:
0.2022338705137372outcome:
passed📌 Teardown phase
duration:
0.00032147113233804703outcome:
passed
↳ Function: test_run_in_past
-
✅ Test 431
📌 Setup phase
duration:
0.0003831489011645317outcome:
passed📌 Call phase
duration:
0.0004682270810008049outcome:
passed📌 Teardown phase
duration:
0.00026975665241479874outcome:
passed
↳ Function: test_run_later_with_seconds
-
✅ Test 432
📌 Setup phase
duration:
0.00029617734253406525outcome:
passed📌 Call phase
duration:
0.20204199757426977outcome:
passed📌 Teardown phase
duration:
0.0003493381664156914outcome:
passed
↳ Function: test_run_later_with_past_datetime
-
✅ Test 433
📌 Setup phase
duration:
0.00037117861211299896outcome:
passed📌 Call phase
duration:
0.00039480067789554596outcome:
passed📌 Teardown phase
duration:
0.000253983773291111outcome:
passed
↳ Function: test_run_at_tqdm_multiple_updates
-
✅ Test 434
📌 Setup phase
duration:
0.0003700451925396919outcome:
passed📌 Call phase
duration:
0.20254687406122684outcome:
passed📌 Teardown phase
duration:
0.00039037130773067474outcome:
passed
↳ Function: test_today_basic
-
✅ Test 435
📌 Setup phase
duration:
0.00018361303955316544outcome:
passed📌 Call phase
duration:
0.0009012622758746147outcome:
passed📌 Teardown phase
duration:
0.0001665949821472168outcome:
passed
↳ Function: test_tomorrow_basic
-
✅ Test 436
📌 Setup phase
duration:
0.00020297616720199585outcome:
passed📌 Call phase
duration:
0.0006866827607154846outcome:
passed📌 Teardown phase
duration:
0.00026670657098293304outcome:
passed
↳ Function: test_yesterday_basic
-
✅ Test 437
📌 Setup phase
duration:
0.00029578618705272675outcome:
passed📌 Call phase
duration:
0.0006949985399842262outcome:
passed📌 Teardown phase
duration:
0.000264657661318779outcome:
passed
↳ Function: test_today_matmul_string
-
✅ Test 438
📌 Setup phase
duration:
0.0002931356430053711outcome:
passed📌 Call phase
duration:
0.0007156813517212868outcome:
passed📌 Teardown phase
duration:
0.0002710968255996704outcome:
passed
↳ Function: test_tomorrow_matmul_list
-
✅ Test 439
📌 Setup phase
duration:
0.00029530003666877747outcome:
passed📌 Call phase
duration:
0.0007143011316657066outcome:
passed📌 Teardown phase
duration:
0.00029334425926208496outcome:
passed
↳ Function: test_yesterday_matmul_single
-
✅ Test 440
📌 Setup phase
duration:
0.0003057960420846939outcome:
passed📌 Call phase
duration:
0.0007309745997190475outcome:
passed📌 Teardown phase
duration:
0.00029313191771507263outcome:
passed
-
-
📄 test_utils_sendmail.py
↳ Function: test_sendmail_local_delivery
-
✅ Test 441
📌 Setup phase
duration:
0.00032132212072610855outcome:
passed📌 Call phase
duration:
0.14076662436127663outcome:
passed📌 Teardown phase
duration:
0.0002900799736380577outcome:
passed
↳ Function: test_sendmail_raises_on_sendmail_failure
-
✅ Test 442
📌 Setup phase
duration:
0.0003983220085501671outcome:
passed📌 Call phase
duration:
0.0008404534310102463outcome:
passed📌 Teardown phase
duration:
0.00020846445113420486outcome:
passed
-
-
📄 test_utils_sendsms.py
↳ Function: test_sendsms_local_delivery
-
✅ Test 443
📌 Setup phase
duration:
0.00025815144181251526outcome:
passed📌 Call phase
duration:
0.11558071430772543outcome:
passed📌 Teardown phase
duration:
0.00031977519392967224outcome:
passed
-
-
📄 test_utils_shortcut.py
↳ Function: TestShortcutInitialization
-
✅ Test 444
📌 Setup phase
duration:
0.0006198901683092117outcome:
passed📌 Call phase
duration:
0.00031343940645456314outcome:
passed📌 Teardown phase
duration:
0.00021661631762981415outcome:
passed -
✅ Test 445
📌 Setup phase
duration:
0.0002510780468583107outcome:
passed📌 Call phase
duration:
0.00019604060798883438outcome:
passed📌 Teardown phase
duration:
0.00018269382417201996outcome:
passed
↳ Function: test_run_method
-
✅ Test 446
📌 Setup phase
duration:
0.00043233856558799744outcome:
passed📌 Call phase
duration:
0.0007609724998474121outcome:
passed📌 Teardown phase
duration:
0.0002439366653561592outcome:
passed
↳ Function: test_repr_output
-
✅ Test 447
📌 Setup phase
duration:
0.0002431906759738922outcome:
passed📌 Call phase
duration:
0.00020840950310230255outcome:
passed📌 Teardown phase
duration:
0.00016862992197275162outcome:
passed
↳ Function: test_source_with_regular_function
-
✅ Test 448
📌 Setup phase
duration:
0.00022813770920038223outcome:
passed📌 Call phase
duration:
0.001501721329987049outcome:
passed📌 Teardown phase
duration:
0.00021333806216716766outcome:
passed
↳ Function: test_source_error_handling
-
✅ Test 449
📌 Setup phase
duration:
0.00026320479810237885outcome:
passed📌 Call phase
duration:
0.0009345179423689842outcome:
passed📌 Teardown phase
duration:
0.00020302832126617432outcome:
passed
↳ Function: test_as_shortcut_basic
-
✅ Test 450
📌 Setup phase
duration:
0.0002592867240309715outcome:
passed📌 Call phase
duration:
0.00019221752882003784outcome:
passed📌 Teardown phase
duration:
0.00018013734370470047outcome:
passed
↳ Function: test_as_shortcut_with_name
-
✅ Test 451
📌 Setup phase
duration:
0.0002389056608080864outcome:
passed📌 Call phase
duration:
0.000186222605407238outcome:
passed📌 Teardown phase
duration:
0.00016485527157783508outcome:
passed
↳ Function: test_as_shortcut_factory_pattern
-
✅ Test 452
📌 Setup phase
duration:
0.00021301396191120148outcome:
passed📌 Call phase
duration:
0.00018849782645702362outcome:
passed📌 Teardown phase
duration:
0.00016583222895860672outcome:
passed
↳ Function: TestShortcutsSingleton
-
✅ Test 453
📌 Setup phase
duration:
0.0003274129703640938outcome:
passed📌 Call phase
duration:
0.00017616059631109238outcome:
passed📌 Teardown phase
duration:
0.00017989519983530045outcome:
passed -
✅ Test 455
📌 Setup phase
duration:
0.0003275712952017784outcome:
passed📌 Call phase
duration:
0.00023125484585762024outcome:
passed📌 Teardown phase
duration:
0.00018483400344848633outcome:
passed -
✅ Test 456
📌 Setup phase
duration:
0.0002891113981604576outcome:
passed📌 Call phase
duration:
0.0002590129151940346outcome:
passed📌 Teardown phase
duration:
0.00019075628370046616outcome:
passed -
✅ Test 457
📌 Setup phase
duration:
0.0002981014549732208outcome:
passed📌 Call phase
duration:
0.00030162837356328964outcome:
passed📌 Teardown phase
duration:
0.0001893201842904091outcome:
passed
↳ Function: TestFullIntegration
-
✅ Test 458
📌 Setup phase
duration:
0.0004880335181951523outcome:
passed📌 Call phase
duration:
0.0013891933485865593outcome:
passedstdout:
Calculating 3 + 4📌 Teardown phase
duration:
0.00029202550649642944outcome:
passed
↳ Function: test_registry_inheritance
-
✅ Test 460
📌 Setup phase
duration:
0.0002474663779139519outcome:
passed📌 Call phase
duration:
0.00017719436436891556outcome:
passed📌 Teardown phase
duration:
0.00019515398889780045outcome:
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.0003945156931877136outcome:
passed📌 Call phase
duration:
0.0007165353745222092outcome:
passed📌 Teardown phase
duration:
0.00021649058908224106outcome:
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.0003566034138202667outcome:
passed📌 Call phase
duration:
0.0005181301385164261outcome:
passed📌 Teardown phase
duration:
0.0002126777544617653outcome:
passed -
✅ Test 463
params:test_input=[], expected=[], kwargs={}📌 Parameters
params: test_input: [] expected: [] kwargs: {} id: "empty_case"📌 Setup phase
duration:
0.00032153353095054626outcome:
passed📌 Call phase
duration:
0.00017962977290153503outcome:
passed📌 Teardown phase
duration:
0.00019347760826349258outcome:
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.0003250623121857643outcome:
passed📌 Call phase
duration:
0.0006252769380807877outcome:
passed📌 Teardown phase
duration:
0.00021329522132873535outcome:
passed -
✅ Test 465
params:test_input=[["z3", "C"], ["a1", "A"], ["m2", "B"]], expected=["A", "B", "C"], kwargs="{'sort_key': <function <lambda> at 0x7ff22d794e50>}"📌 Parameters
params: test_input: [["z3", "C"], ["a1", "A"], ["m2", "B"]] expected: ["A", "B", "C"] kwargs: "{'sort_key': <function <lambda> at 0x7ff22d794e50>}" id: "sort_id"📌 Setup phase
duration:
0.0003293650224804878outcome:
passed📌 Call phase
duration:
0.0006253523752093315outcome:
passed📌 Teardown phase
duration:
0.00021537579596042633outcome:
passed -
✅ Test 466
params:test_input=[["3", "Charlie"], ["1", "alpha"], ["2", "Beta"]], expected=["alpha", "Beta", "Charlie"], kwargs="{'sort_key': <function <lambda> at 0x7ff22d794ee0>}"📌 Parameters
params: test_input: [["3", "Charlie"], ["1", "alpha"], ["2", "Beta"]] expected: ["alpha", "Beta", "Charlie"] kwargs: "{'sort_key': <function <lambda> at 0x7ff22d794ee0>}" id: "sort_case_insensitive"📌 Setup phase
duration:
0.0003325939178466797outcome:
passed📌 Call phase
duration:
0.0006047682836651802outcome:
passed📌 Teardown phase
duration:
0.00021014641970396042outcome:
passed -
✅ Test 467
params:test_input=[["1", "A"], ["2", "BB"], ["3", "CCC"]], expected=["A", "BB", "CCC"], kwargs="{'sort_key': <function <lambda> at 0x7ff22d794f70>}"📌 Parameters
params: test_input: [["1", "A"], ["2", "BB"], ["3", "CCC"]] expected: ["A", "BB", "CCC"] kwargs: "{'sort_key': <function <lambda> at 0x7ff22d794f70>}" id: "sort_length"📌 Setup phase
duration:
0.0003423048183321953outcome:
passed📌 Call phase
duration:
0.0006188405677676201outcome:
passed📌 Teardown phase
duration:
0.00020894501358270645outcome:
passed -
✅ Test 468
params:test_input=[["1", "A"], ["2", "B"], ["3", "C"]], expected=["C", "B", "A"], kwargs="{'sort_key': <function <lambda> at 0x7ff22d786040>}"📌 Parameters
params: test_input: [["1", "A"], ["2", "B"], ["3", "C"]] expected: ["C", "B", "A"] kwargs: "{'sort_key': <function <lambda> at 0x7ff22d786040>}" id: "sort_reverse"📌 Setup phase
duration:
0.0003326954320073128outcome:
passed📌 Call phase
duration:
0.0006118481978774071outcome:
passed📌 Teardown phase
duration:
0.00021438952535390854outcome:
passed
-
-
📄 test_utils_termtitle.py
↳ Function: test_terminal_title_with_tmux
-
✅ Test 469
📌 Setup phase
duration:
0.00020218640565872192outcome:
passed📌 Call phase
duration:
0.01663957256823778outcome:
passed📌 Teardown phase
duration:
0.0002842480316758156outcome:
passed
-
-
📄 test_utils_tqdm_mod.py
↳ Function: test_complete_progress_bar
-
✅ Test 470
📌 Setup phase
duration:
0.00020186509937047958outcome:
passed📌 Call phase
duration:
0.004114401526749134outcome:
passed📌 Teardown phase
duration:
0.0001562098041176796outcome:
passed
↳ Function: test_set_progress_multiple_points
-
✅ Test 471
📌 Setup phase
duration:
0.00016515608876943588outcome:
passed📌 Call phase
duration:
0.0018012570217251778outcome:
passed📌 Teardown phase
duration:
0.00017306767404079437outcome:
passed
↳ Function: test_format_sizeof_alignment
-
✅ Test 472
📌 Setup phase
duration:
0.00016999244689941406outcome:
passed📌 Call phase
duration:
0.00018969550728797913outcome:
passed📌 Teardown phase
duration:
0.00013651233166456223outcome:
passed
↳ Function: test_custom_unit
-
✅ Test 474
📌 Setup phase
duration:
0.00017795339226722717outcome:
passed📌 Call phase
duration:
0.004892279393970966outcome:
passed📌 Teardown phase
duration:
0.00015161465853452682outcome:
passed
↳ Function: test_clamp_above_total
-
✅ Test 475
📌 Setup phase
duration:
0.00015666428953409195outcome:
passed📌 Call phase
duration:
0.0005517136305570602outcome:
passed📌 Teardown phase
duration:
0.00014198105782270432outcome:
passed
↳ Function: test_clamp_below_zero
-
✅ Test 476
📌 Setup phase
duration:
0.00015998538583517075outcome:
passed📌 Call phase
duration:
0.0006989073008298874outcome:
passed📌 Teardown phase
duration:
0.00015234947204589844outcome:
passed
-
-
📄 test_utils_trinary.py
↳ Function: test_check_trinary_valid_values
-
✅ Test 477
📌 Setup phase
duration:
0.00017735175788402557outcome:
passed📌 Call phase
duration:
0.00021755415946245193outcome:
passed📌 Teardown phase
duration:
0.0001417212188243866outcome:
passed
↳ Function: test_check_trinary_invalid_value
-
✅ Test 478
📌 Setup phase
duration:
0.0001904284581542015outcome:
passed📌 Call phase
duration:
0.0004662405699491501outcome:
passed📌 Teardown phase
duration:
0.00014348607510328293outcome:
passed
↳ Function: test_check_trinary_with_custom_allowed_values
-
✅ Test 479
📌 Setup phase
duration:
0.00014687888324260712outcome:
passed📌 Call phase
duration:
0.00020050350576639175outcome:
passed📌 Teardown phase
duration:
0.0001553250476717949outcome:
passed
-
-
📄 test_utils_typecast.py
↳ Function: test_downcast_success
-
✅ Test 480
📌 Setup phase
duration:
0.00015848781913518906outcome:
passed📌 Call phase
duration:
0.0002081422135233879outcome:
passed📌 Teardown phase
duration:
0.00013516750186681747outcome:
passed
↳ Function: test_upcast_success
-
✅ Test 481
📌 Setup phase
duration:
0.00015374459326267242outcome:
passed📌 Call phase
duration:
0.00020026788115501404outcome:
passed📌 Teardown phase
duration:
0.00013150181621313095outcome:
passed
↳ Function: test_downcast_invalid
-
✅ Test 482
📌 Setup phase
duration:
0.00013785995543003082outcome:
passed📌 Call phase
duration:
0.0003954898566007614outcome:
passed📌 Teardown phase
duration:
0.0001426655799150467outcome:
passed
↳ Function: test_upcast_invalid
-
✅ Test 483
📌 Setup phase
duration:
0.00014534592628479004outcome:
passed📌 Call phase
duration:
0.000218195840716362outcome:
passed📌 Teardown phase
duration:
0.0001445012167096138outcome:
passed
↳ Function: test_object_identity_preserved
-
✅ Test 484
📌 Setup phase
duration:
0.00014754384756088257outcome:
passed📌 Call phase
duration:
0.00017956923693418503outcome:
passed📌 Teardown phase
duration:
0.00013605784624814987outcome:
passed
↳ Function: test_ensure_subclass_valid
-
✅ Test 485
📌 Setup phase
duration:
0.00014454685151576996outcome:
passed📌 Call phase
duration:
0.00019761640578508377outcome:
passed📌 Teardown phase
duration:
0.00013279635459184647outcome:
passed
↳ Function: test_ensure_subclass_invalid
-
✅ Test 486
📌 Setup phase
duration:
0.00014080852270126343outcome:
passed📌 Call phase
duration:
0.00019885879009962082outcome:
passed📌 Teardown phase
duration:
0.00013346876949071884outcome:
passed
↳ Function: test_cast_changes_class
-
✅ Test 487
📌 Setup phase
duration:
0.0001521855592727661outcome:
passed📌 Call phase
duration:
0.0001745373010635376outcome:
passed📌 Teardown phase
duration:
0.00013317354023456573outcome:
passed
↳ Function: test_cast_preserves_identity
-
✅ Test 488
📌 Setup phase
duration:
0.00014006812125444412outcome:
passed📌 Call phase
duration:
0.00016194023191928864outcome:
passed📌 Teardown phase
duration:
0.00013249646872282028outcome:
passed
-
-
📄 test_utils_utils.py
↳ Function: test_singleton_instance
-
✅ Test 489
📌 Setup phase
duration:
0.00016007386147975922outcome:
passed📌 Call phase
duration:
0.0002070832997560501outcome:
passed📌 Teardown phase
duration:
0.00013816636055707932outcome:
passed
↳ Function: test_singleton_identity
-
✅ Test 490
📌 Setup phase
duration:
0.000153345987200737outcome:
passed📌 Call phase
duration:
0.00018205400556325912outcome:
passed📌 Teardown phase
duration:
0.0001322748139500618outcome:
passed
↳ Function: test_typename
-
✅ Test 491
params:obj=null, expected="NoneType"📌 Parameters
params: obj: null expected: "NoneType" id: "None-NoneType"📌 Setup phase
duration:
0.0003680530935525894outcome:
passed📌 Call phase
duration:
0.00018603261560201645outcome:
passed📌 Teardown phase
duration:
0.00019517447799444199outcome:
passed -
✅ Test 492
params:obj=true, expected="bool"📌 Parameters
params: obj: true expected: "bool" id: "True-bool"📌 Setup phase
duration:
0.00027739815413951874outcome:
passed📌 Call phase
duration:
0.000166221521794796outcome:
passed📌 Teardown phase
duration:
0.00018250197172164917outcome:
passed -
✅ Test 493
params:obj=42, expected="int"📌 Parameters
params: obj: 42 expected: "int" id: "42-int"📌 Setup phase
duration:
0.00026670657098293304outcome:
passed📌 Call phase
duration:
0.00017729494720697403outcome:
passed📌 Teardown phase
duration:
0.00017228629440069199outcome:
passed -
✅ Test 494
params:obj=3.14, expected="float"📌 Parameters
params: obj: 3.14 expected: "float" id: "3.14-float"📌 Setup phase
duration:
0.000260794535279274outcome:
passed📌 Call phase
duration:
0.00017942022532224655outcome:
passed📌 Teardown phase
duration:
0.0001893332228064537outcome:
passed -
✅ Test 495
params:obj="text", expected="str"📌 Parameters
params: obj: "text" expected: "str" id: "text-str"📌 Setup phase
duration:
0.00028878264129161835outcome:
passed📌 Call phase
duration:
0.00018937699496746063outcome:
passed📌 Teardown phase
duration:
0.00018003396689891815outcome:
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.00027332454919815063outcome:
passed📌 Call phase
duration:
0.0001775519922375679outcome:
passed📌 Teardown phase
duration:
0.00017778947949409485outcome:
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.00027212686836719513outcome:
passed📌 Call phase
duration:
0.00017439108341932297outcome:
passed📌 Teardown phase
duration:
0.0001766020432114601outcome:
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.00029326044023036957outcome:
passed📌 Call phase
duration:
0.00018052849918603897outcome:
passed📌 Teardown phase
duration:
0.00018476415425539017outcome:
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.00025757867842912674outcome:
passed📌 Call phase
duration:
0.00016828440129756927outcome:
passed📌 Teardown phase
duration:
0.00019241869449615479outcome:
passed -
✅ Test 500
params:obj="<function <lambda> at 0x7ff22d79c790>", expected="function"📌 Parameters
params: obj: "<function <lambda> at 0x7ff22d79c790>" expected: "function" id: "<lambda>-function"📌 Setup phase
duration:
0.0003655804321169853outcome:
passed📌 Call phase
duration:
0.0001962762326002121outcome:
passed📌 Teardown phase
duration:
0.00018558930605649948outcome:
passed -
✅ Test 501
params:obj="<function sample_function at 0x7ff22d79c700>", expected="function"📌 Parameters
params: obj: "<function sample_function at 0x7ff22d79c700>" expected: "function" id: "sample_function-function"📌 Setup phase
duration:
0.00027947966009378433outcome:
passed📌 Call phase
duration:
0.0001756753772497177outcome:
passed📌 Teardown phase
duration:
0.00017424765974283218outcome:
passed -
✅ Test 502
params:obj="<function sample_function.<locals>.nested at 0x7ff22d79c820>", expected="function"📌 Parameters
params: obj: "<function sample_function.<locals>.nested at 0x7ff22d79c820>" expected: "function" id: "nested-function"📌 Setup phase
duration:
0.0002557607367634773outcome:
passed📌 Call phase
duration:
0.00017419084906578064outcome:
passed📌 Teardown phase
duration:
0.00017879437655210495outcome:
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.00026207510381937027outcome:
passed📌 Call phase
duration:
0.00016923341900110245outcome:
passed📌 Teardown phase
duration:
0.00017448421567678452outcome:
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.00027405377477407455outcome:
passed📌 Call phase
duration:
0.00016583502292633057outcome:
passed📌 Teardown phase
duration:
0.00016661547124385834outcome:
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.00025992561131715775outcome:
passed📌 Call phase
duration:
0.0001708017662167549outcome:
passed📌 Teardown phase
duration:
0.00018097739666700363outcome:
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.0002517886459827423outcome:
passed📌 Call phase
duration:
0.00017058756202459335outcome:
passed📌 Teardown phase
duration:
0.0001786835491657257outcome:
passed -
✅ Test 507
params:obj="<class 'function'>", expected="type"📌 Parameters
params: obj: "<class 'function'>" expected: "type" id: "function-type"📌 Setup phase
duration:
0.0002619139850139618outcome:
passed📌 Call phase
duration:
0.00017316080629825592outcome:
passed📌 Teardown phase
duration:
0.00018816906958818436outcome:
passed -
✅ Test 508
params:obj="<generator object <genexpr> at 0x7ff22d525d60>", expected="generator"📌 Parameters
params: obj: "<generator object <genexpr> at 0x7ff22d525d60>" expected: "generator" id: "<genexpr>-generator"📌 Setup phase
duration:
0.00026392750442028046outcome:
passed📌 Call phase
duration:
0.00017617922276258469outcome:
passed📌 Teardown phase
duration:
0.00017320364713668823outcome:
passed -
✅ Test 509
params:obj="<list_iterator object at 0x7ff22d755520>", expected="list_iterator"📌 Parameters
params: obj: "<list_iterator object at 0x7ff22d755520>" expected: "list_iterator" id: "obj18-list_iterator"📌 Setup phase
duration:
0.00026709306985139847outcome:
passed📌 Call phase
duration:
0.00017711985856294632outcome:
passed📌 Teardown phase
duration:
0.00017601996660232544outcome:
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.0002699214965105057outcome:
passed📌 Call phase
duration:
0.00017847120761871338outcome:
passed📌 Teardown phase
duration:
0.0001894114539027214outcome:
passed -
✅ Test 511
params:nums=[10, 20], expected=21📌 Parameters
params: nums: [10, 20] expected: 21 id: "nums1-21"📌 Setup phase
duration:
0.00026845093816518784outcome:
passed📌 Call phase
duration:
0.00018585007637739182outcome:
passed📌 Teardown phase
duration:
0.00017348211258649826outcome:
passed -
✅ Test 512
params:nums=[], expected=0📌 Parameters
params: nums: [] expected: 0 id: "nums2-0"📌 Setup phase
duration:
0.00026348792016506195outcome:
passed📌 Call phase
duration:
0.00016615912318229675outcome:
passed📌 Teardown phase
duration:
0.00017755571752786636outcome:
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.00031252484768629074outcome:
passed📌 Call phase
duration:
0.00018442701548337936outcome:
passed📌 Teardown phase
duration:
0.0001990562304854393outcome:
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.0003041895106434822outcome:
passed📌 Call phase
duration:
0.00017034169286489487outcome:
passed📌 Teardown phase
duration:
0.00021165795624256134outcome:
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.0003182310611009598outcome:
passed📌 Call phase
duration:
0.00017139967530965805outcome:
passed📌 Teardown phase
duration:
0.0001895073801279068outcome:
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.0002726605162024498outcome:
passed📌 Call phase
duration:
0.0001788334921002388outcome:
passed📌 Teardown phase
duration:
0.0001804642379283905outcome:
passed -
✅ Test 517
params:val=2.1, expected=2📌 Parameters
params: val: 2.1 expected: 2 id: "2.1-2"📌 Setup phase
duration:
0.00027888640761375427outcome:
passed📌 Call phase
duration:
0.00017263181507587433outcome:
passed📌 Teardown phase
duration:
0.00017271842807531357outcome:
passed -
✅ Test 518
params:val=-1.5, expected=-2📌 Parameters
params: val: -1.5 expected: -2 id: "-1.5--2"📌 Setup phase
duration:
0.0002574743703007698outcome:
passed📌 Call phase
duration:
0.0001680152490735054outcome:
passed📌 Teardown phase
duration:
0.00021371804177761078outcome:
passed -
✅ Test 519
params:val=-1.4, expected=-1📌 Parameters
params: val: -1.4 expected: -1 id: "-1.4--1"📌 Setup phase
duration:
0.00026654452085494995outcome:
passed📌 Call phase
duration:
0.00017432216554880142outcome:
passed📌 Teardown phase
duration:
0.00020955316722393036outcome:
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.0002913866192102432outcome:
passed📌 Call phase
duration:
0.0002359636127948761outcome:
passed📌 Teardown phase
duration:
0.0001852894201874733outcome:
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.0002711676061153412outcome:
passed📌 Call phase
duration:
0.00020035449415445328outcome:
passed📌 Teardown phase
duration:
0.00018742773681879044outcome:
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.0002809930592775345outcome:
passed📌 Call phase
duration:
0.0001945067197084427outcome:
passed📌 Teardown phase
duration:
0.00018965918570756912outcome:
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.0003340691328048706outcome:
passed📌 Call phase
duration:
0.00019994191825389862outcome:
passed📌 Teardown phase
duration:
0.00019977334886789322outcome:
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.0003250986337661743outcome:
passed📌 Call phase
duration:
0.00018218811601400375outcome:
passed📌 Teardown phase
duration:
0.00021042302250862122outcome:
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.0003217831254005432outcome:
passed📌 Call phase
duration:
0.00017889868468046188outcome:
passed📌 Teardown phase
duration:
0.00027618370950222015outcome:
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.0003240862861275673outcome:
passed📌 Call phase
duration:
0.0001800060272216797outcome:
passed📌 Teardown phase
duration:
0.00019472092390060425outcome:
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.0003260113298892975outcome:
passed📌 Call phase
duration:
0.00019328203052282333outcome:
passed📌 Teardown phase
duration:
0.00019655562937259674outcome:
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.0003198916092514992outcome:
passed📌 Call phase
duration:
0.0001886654645204544outcome:
passed📌 Teardown phase
duration:
0.0002084299921989441outcome:
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.00020778458565473557outcome:
passed📌 Call phase
duration:
0.0005042329430580139outcome:
passed📌 Teardown phase
duration:
0.000872759148478508outcome:
passed
-
❌ Failed (6)
-
📄 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.0003075897693634033outcome:
passed📌 Call phase
duration:
0.0009344182908535004outcome:
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.00036121439188718796outcome:
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.0003168964758515358outcome:
passed📌 Call phase
duration:
0.0006149988621473312outcome:
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.00024664774537086487outcome:
passed
-
-
📄 test_utils_logcfg.py
↳ Function: test_import_logging_once_per_module
-
❌ Test 246
📌 Setup phase
duration:
0.00018829479813575745outcome:
passed📌 Call phase
duration:
1.691840480081737outcome:
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 14:29:31 tools:40] cannot assign endstation to IP 172.18.0.3 (0b4b3eb32801) [W 250829 14:29:32 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.0004431856796145439outcome:
passed
-
-
📄 test_utils_shortcut.py
↳ Function: TestShortcutsSingleton
-
❌ Test 454
📌 Setup phase
duration:
0.00030235666781663895outcome:
passed📌 Call phase
duration:
0.0007019657641649246outcome:
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 0x7ff22d50b910> 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.0002379380166530609outcome:
passed
↳ Function: TestFullIntegration
-
❌ Test 459
📌 Setup phase
duration:
0.00030979979783296585outcome:
passed📌 Call phase
duration:
0.0006035799160599709outcome:
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 0x7ff22d517670> 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.00023636315017938614outcome:
passed
-
-
📄 test_utils_tqdm_mod.py
↳ Function: test_float_alignment_in_bar
-
❌ Test 473
📌 Setup phase
duration:
0.00016222894191741943outcome:
passed📌 Call phase
duration:
0.0020388439297676086outcome:
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, 59492.2 Hz] AlignBar: 12%|#2 | 12.5/100.1 [00:00<00:00, 86194.2 Hz] AlignBar: 100%|#########9| 99.9/100.1 [00:00<00:00, 453717.2 Hz] AlignBar: 100%|##########| 100.1/100.1 [00:00<00:00, 224803.9 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.0002161869779229164outcome:
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