Clone
1
run 1247 TEST commit 03a4209
ci-bot edited this page 2025-07-25 15:31:53 +00:00

Test Report

View CI Run 1247 | Commit 03a4209 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_lazypv.py::test_getattr - AssertionError: Expected dict because form='time'
assert False
 +  where False = isinstance(None, dict)
================== 3 failed, 109 passed, 4 warnings in 8.35s ===================
🪵 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: html-4.1.1, cov-5.0.0, metadata-3.1.1, allure-pytest-2.13.5, json-report-1.5.0
]0;slic[W 250725 15:31:46 pvpreload:38] PV preload file not loaded due to: FileNotFoundError: [Errno 2] No such file or directory: '/root/.slic/pvpreload'
collected 112 items

tests/test_utils_ask_yes_no.py .............
.
.
.
.
.
.
.

.


.


.
.
.
.
.
.
.
.
.
.
..


.
.
.

.

.



.
tests/test_utils_channels.py .
tests/test_utils_cpint.py ........................
tests/test_utils_debug.py ......F...F
tests/test_utils_dictext.py .................
tests/test_utils_dotdir.py ...
tests/test_utils_jsonext.py ........
tests/test_utils_lazypv.py F
tests/test_utils_picklio.py .......

=================================== 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_getattr _________________________________

    def test_getattr():
        # Only valid kwargs accepted by epics.PV
        pv = PV(
            "ca://TEST:FLOAT",
            form='time',
            auto_monitor=True,
            verbose=True,
            connection_timeout=3.0
        )
    
        # Pv not yet instantiated
        assert pv._pv is None
    
        # Trigger instantiation by accessing a real attribute
        pvname = pv.__getattr__('pvname')
        assert isinstance(pvname, str)
        assert pvname == "ca://TEST:FLOAT"
        assert pv._pv is not None
    
        # access all known epics.PV kwargs via __getattr__
        form = pv.__getattr__('form')
        assert form == 'time'
    
        auto_monitor = pv.__getattr__('auto_monitor')
        assert auto_monitor is True
    
        verbose = pv.__getattr__('verbose')
        assert verbose is True
    
        timeout = pv.__getattr__('connection_timeout')
        assert isinstance(timeout, (float, int))
        assert timeout == 3.0
    
        # Have the get() method from (__getattr__) to get all the parameters in a dict
        get_method = pv.__getattr__('get')
        assert callable(get_method) # Check if it's really a function
    
        result = get_method()
>       assert isinstance(result, dict), "Expected dict because form='time'"
E       AssertionError: Expected dict because form='time'
E       assert False
E        +  where False = isinstance(None, dict)

tests/test_utils_lazypv.py:53: AssertionError
=============================== 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/pyepics-3.4.3-py3.9.egg/epics/ca.py:28
  /workspace/tligui_y/slic/.pixi/envs/default/lib/python3.8/site-packages/pyepics-3.4.3-py3.9.egg/epics/ca.py:28: DeprecationWarning: pkg_resources is deprecated as an API. See https://setuptools.pypa.io/en/latest/pkg_resources.html

.pixi/envs/default/lib/python3.8/site-packages/pkg_resources/__init__.py:3154
  /workspace/tligui_y/slic/.pixi/envs/default/lib/python3.8/site-packages/pkg_resources/__init__.py:3154: DeprecationWarning: Deprecated call to `pkg_resources.declare_namespace('mpl_toolkits')`.
  Implementing implicit namespace packages (as specified in PEP 420) is preferred to `pkg_resources.declare_namespace`. See https://setuptools.pypa.io/en/latest/references/keywords.html#keyword-namespace-packages
    declare_namespace(pkg)

.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

-- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html

🧪 Test Report

Generated on 2025-07-25 17:31:52 CEST

🧾 General Info

  • duration: 8.352021932601929
  • root: /workspace/tligui_y/slic
  • environment: {}

📋 Summary

  • Passed: 109
  • Failed: 3
  • Total: 112
  • Collected: 112

🔎 Tests

Passed (109)
  • 📄 test_utils_ask_yes_no.py

    Function: test_ask_yes_no

    • Test 1

      📌 Setup phase

      duration:

      0.0007808988448232412
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.000838153064250946
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.0003140810877084732
      

      outcome:

      passed
      
    • Test 2

      📌 Setup phase

      duration:

      0.0003577880561351776
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.0007683350704610348
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00019521103240549564
      

      outcome:

      passed
      
    • Test 3

      📌 Setup phase

      duration:

      0.0003457288257777691
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.0005158309359103441
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00019384012557566166
      

      outcome:

      passed
      
    • Test 4

      📌 Setup phase

      duration:

      0.0003184298984706402
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.0005268370732665062
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00018151220865547657
      

      outcome:

      passed
      
    • Test 5

      📌 Setup phase

      duration:

      0.00031859404407441616
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.000536325154826045
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00018158601596951485
      

      outcome:

      passed
      
    • Test 6

      📌 Setup phase

      duration:

      0.0003314411733299494
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.0009027239866554737
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00019229203462600708
      

      outcome:

      passed
      
    • Test 7

      📌 Setup phase

      duration:

      0.00033150194212794304
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.0005449389573186636
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00018805288709700108
      

      outcome:

      passed
      
    • Test 8

      📌 Setup phase

      duration:

      0.0003386021126061678
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.0004947329871356487
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00020993896760046482
      

      outcome:

      passed
      
    • Test 9

      📌 Setup phase

      duration:

      0.0003229980356991291
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.0005124351009726524
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00018377299420535564
      

      outcome:

      passed
      
    • Test 10

      📌 Setup phase

      duration:

      0.0003206981346011162
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.0006212671287357807
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.0001926629338413477
      

      outcome:

      passed
      
    • Test 11

      📌 Setup phase

      duration:

      0.0003386600874364376
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.0005004408303648233
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00019270996563136578
      

      outcome:

      passed
      
    • Test 12

      📌 Setup phase

      duration:

      0.00031879497691988945
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.0005002690013498068
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.0001881420612335205
      

      outcome:

      passed
      
    • Test 13

      📌 Setup phase

      duration:

      0.0003169721458107233
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.0005124080926179886
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00018740189261734486
      

      outcome:

      passed
      

    Function: test_ask_yes_no_ctrl_c

    • Test 14

      📌 Setup phase

      duration:

      0.0004636819940060377
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.0005200370214879513
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00020627910271286964
      

      outcome:

      passed
      
    • Test 15

      📌 Setup phase

      duration:

      0.00035727093927562237
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.0005017300136387348
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.0001827990636229515
      

      outcome:

      passed
      
    • Test 16

      📌 Setup phase

      duration:

      0.0003196729812771082
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.0005170921795070171
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.0001865830272436142
      

      outcome:

      passed
      
    • Test 17

      📌 Setup phase

      duration:

      0.0003158778417855501
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.0006344360299408436
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00018837512470781803
      

      outcome:

      passed
      
    • Test 18

      📌 Setup phase

      duration:

      0.00033033802174031734
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.0004948521964251995
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00018043490126729012
      

      outcome:

      passed
      
    • Test 19

      📌 Setup phase

      duration:

      0.0003183980006724596
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.0005307348910719156
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00019877194426953793
      

      outcome:

      passed
      
    • Test 20

      📌 Setup phase

      duration:

      0.00031607598066329956
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.0005533010698854923
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.0001884070225059986
      

      outcome:

      passed
      
    • Test 21

      📌 Setup phase

      duration:

      0.0003194180317223072
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.000694880960509181
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00018298299983143806
      

      outcome:

      passed
      
    • Test 22

      📌 Setup phase

      duration:

      0.00032890005968511105
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.000532940961420536
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.0001817219890654087
      

      outcome:

      passed
      
    • Test 23

      📌 Setup phase

      duration:

      0.00033348891884088516
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.0005372529849410057
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.000198843190446496
      

      outcome:

      passed
      

    Function: test_ask_yes_no_ctrl_d

    • Test 24

      📌 Setup phase

      duration:

      0.0003224459942430258
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.0006320429965853691
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00019092601723968983
      

      outcome:

      passed
      
    • Test 25

      📌 Setup phase

      duration:

      0.00032084807753562927
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.0005118381232023239
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00018973485566675663
      

      outcome:

      passed
      
    • Test 26

      📌 Setup phase

      duration:

      0.0003474131226539612
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.00050517194904387
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00018812716007232666
      

      outcome:

      passed
      
    • Test 27

      📌 Setup phase

      duration:

      0.00031578587368130684
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.0005051090847700834
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00020520901307463646
      

      outcome:

      passed
      
    • Test 28

      📌 Setup phase

      duration:

      0.0003225239925086498
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.0006211490835994482
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00018608104437589645
      

      outcome:

      passed
      
    • Test 29

      📌 Setup phase

      duration:

      0.00031838403083384037
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.0005277020391076803
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00017832894809544086
      

      outcome:

      passed
      
    • Test 30

      📌 Setup phase

      duration:

      0.00032953405752778053
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.0005152029916644096
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00020930683240294456
      

      outcome:

      passed
      
    • Test 31

      📌 Setup phase

      duration:

      0.00031692488119006157
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.000515270046889782
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.0001815680880099535
      

      outcome:

      passed
      
    • Test 32

      📌 Setup phase

      duration:

      0.000321241095662117
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.0006173010915517807
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00017926795408129692
      

      outcome:

      passed
      
    • Test 33

      📌 Setup phase

      duration:

      0.0003357850946485996
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.0005476011428982019
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.0001801447942852974
      

      outcome:

      passed
      
    • Test 34

      📌 Setup phase

      duration:

      0.0003158850595355034
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.0004934829194098711
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.0002011689357459545
      

      outcome:

      passed
      
    • Test 35

      📌 Setup phase

      duration:

      0.00031813886016607285
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.000662381062284112
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00019221496768295765
      

      outcome:

      passed
      
    • Test 36

      📌 Setup phase

      duration:

      0.00032141408883035183
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.0005523308645933867
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00018226401880383492
      

      outcome:

      passed
      
    • Test 37

      📌 Setup phase

      duration:

      0.0003307319711893797
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.0005234719719737768
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00017983606085181236
      

      outcome:

      passed
      

    Function: test_ask_yes_no_mixed_sequences

    • Test 38

      📌 Setup phase

      duration:

      0.00036084698513150215
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.0005654790438711643
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00021450291387736797
      

      outcome:

      passed
      
    • Test 39

      📌 Setup phase

      duration:

      0.00047588814049959183
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.0005634860135614872
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.0002226540818810463
      

      outcome:

      passed
      
    • Test 40

      📌 Setup phase

      duration:

      0.00035763299092650414
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.0005740101914852858
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00020508794113993645
      

      outcome:

      passed
      
  • 📄 test_utils_channels.py

    Function: test_load_channels_and_channels_class_with_professional_names

    • Test 41

      📌 Setup phase

      duration:

      0.000122518977150321
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.0010658688843250275
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00012446288019418716
      

      outcome:

      passed
      
  • 📄 test_utils_cpint.py

    Function: test_load_color_variants_all_keys_and_types

    • Test 42

      📌 Setup phase

      duration:

      0.00020797201432287693
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.000176700996235013
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00013844994828104973
      

      outcome:

      passed
      
    • Test 43

      📌 Setup phase

      duration:

      0.0001832679845392704
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.00016857916489243507
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00012319395318627357
      

      outcome:

      passed
      
    • Test 44

      📌 Setup phase

      duration:

      0.00018063001334667206
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.00016056792810559273
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00012312084436416626
      

      outcome:

      passed
      
    • Test 45

      📌 Setup phase

      duration:

      0.0001691938377916813
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.00016325293108820915
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00012480001896619797
      

      outcome:

      passed
      
    • Test 46

      📌 Setup phase

      duration:

      0.0001682317815721035
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.00014693895354866982
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.0001202200073748827
      

      outcome:

      passed
      
    • Test 47

      📌 Setup phase

      duration:

      0.00017291586846113205
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.00015026121400296688
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00012156879529356956
      

      outcome:

      passed
      
    • Test 48

      📌 Setup phase

      duration:

      0.00016978499479591846
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.00014644511975347996
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00012410501949489117
      

      outcome:

      passed
      
    • Test 49

      📌 Setup phase

      duration:

      0.00017304113134741783
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.00014914409257471561
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00011870800517499447
      

      outcome:

      passed
      

    Function: test_cprint_all_cases_fancy

    • Test 50

      📌 Setup phase

      duration:

      0.0008733430877327919
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.0002872168552130461
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00026860693469643593
      

      outcome:

      passed
      
    • Test 51

      📌 Setup phase

      duration:

      0.00048637203872203827
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.00022918405011296272
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00027913390658795834
      

      outcome:

      passed
      
    • Test 52

      📌 Setup phase

      duration:

      0.0004747950006276369
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.00021781702525913715
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00024065491743385792
      

      outcome:

      passed
      
    • Test 53

      📌 Setup phase

      duration:

      0.0004597629886120558
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.0002162668388336897
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00025139586068689823
      

      outcome:

      passed
      
    • Test 54

      📌 Setup phase

      duration:

      0.0004725309554487467
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.0002186137717217207
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.0002590368967503309
      

      outcome:

      passed
      
    • Test 55

      📌 Setup phase

      duration:

      0.00045380881056189537
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.00023680692538619041
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00024717114865779877
      

      outcome:

      passed
      
    • Test 56

      📌 Setup phase

      duration:

      0.0004665812011808157
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.00022869091480970383
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00026401388458907604
      

      outcome:

      passed
      
    • Test 57

      📌 Setup phase

      duration:

      0.00043935980647802353
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.00021433597430586815
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00024286191910505295
      

      outcome:

      passed
      
    • Test 58

      📌 Setup phase

      duration:

      0.0004544439725577831
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.00021852296777069569
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00028851302340626717
      

      outcome:

      passed
      
    • Test 59

      📌 Setup phase

      duration:

      0.0005384040996432304
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.0002315209712833166
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.0002875479403883219
      

      outcome:

      passed
      
    • Test 60

      📌 Setup phase

      duration:

      0.0005064751021564007
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.00023241480812430382
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.0002742100041359663
      

      outcome:

      passed
      
    • Test 61

      📌 Setup phase

      duration:

      0.00044569000601768494
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.00021699699573218822
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.0002400558441877365
      

      outcome:

      passed
      
    • Test 62

      📌 Setup phase

      duration:

      0.0004783750046044588
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.0005284100770950317
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.0002633281983435154
      

      outcome:

      passed
      
    • Test 63

      📌 Setup phase

      duration:

      0.00047183805145323277
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.0002421000972390175
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00023975293152034283
      

      outcome:

      passed
      
    • Test 64

      📌 Setup phase

      duration:

      0.00045018107630312443
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.0002511688508093357
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00024168286472558975
      

      outcome:

      passed
      
    • Test 65

      📌 Setup phase

      duration:

      0.00045896810479462147
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.00022154301404953003
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.0002589800860732794
      

      outcome:

      passed
      
  • 📄 test_utils_debug.py

    Function: test_traceable

    • Test 66

      📌 Setup phase

      duration:

      0.00028572906740009785
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.0011186599731445312
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.0001795708667486906
      

      outcome:

      passed
      
    • Test 67

      📌 Setup phase

      duration:

      0.00028986786492168903
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.0008765491656959057
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.0001757980789989233
      

      outcome:

      passed
      
    • Test 68

      📌 Setup phase

      duration:

      0.0002911218907684088
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.0013175499625504017
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.0001808579545468092
      

      outcome:

      passed
      
    • Test 69

      📌 Setup phase

      duration:

      0.00028055207803845406
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.0007820490282028913
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00017598015256226063
      

      outcome:

      passed
      
    • Test 70

      📌 Setup phase

      duration:

      0.0002859488595277071
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.0008751649875193834
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00017879786901175976
      

      outcome:

      passed
      

    Function: test_short_repr

    • Test 71

      📌 Setup phase

      duration:

      0.000277847982943058
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.0001456211321055889
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00015446194447577
      

      outcome:

      passed
      
    • Test 73

      📌 Setup phase

      duration:

      0.00048694596625864506
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.00019205990247428417
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00017216987907886505
      

      outcome:

      passed
      
    • Test 74

      📌 Setup phase

      duration:

      0.00029737106524407864
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.00015299697406589985
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00015510804951190948
      

      outcome:

      passed
      
    • Test 75

      📌 Setup phase

      duration:

      0.0002805569674819708
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.00013522105291485786
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00015835394151508808
      

      outcome:

      passed
      
  • 📄 test_utils_dictext.py

    Function: test_attrdict_getattr

    • Test 77

      📌 Setup phase

      duration:

      0.00032145692966878414
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.0001966820564121008
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.0001618328969925642
      

      outcome:

      passed
      
    • Test 78

      📌 Setup phase

      duration:

      0.0002917568199336529
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.00014397199265658855
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00015183701179921627
      

      outcome:

      passed
      
    • Test 79

      📌 Setup phase

      duration:

      0.0002741529606282711
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.0001346489880234003
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00015925406478345394
      

      outcome:

      passed
      

    Function: test_attrdict_setattr

    • Test 80

      📌 Setup phase

      duration:

      0.00026950007304549217
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.00014220480807125568
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00016594212502241135
      

      outcome:

      passed
      
    • Test 81

      📌 Setup phase

      duration:

      0.0002627330832183361
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.00013986602425575256
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.0001472120638936758
      

      outcome:

      passed
      

    Function: test_attrdict_delattr

    • Test 82

      📌 Setup phase

      duration:

      0.0002615470439195633
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.00019934587180614471
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00015789596363902092
      

      outcome:

      passed
      
    • Test 83

      📌 Setup phase

      duration:

      0.00026120315305888653
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.0001787859946489334
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00015515601262450218
      

      outcome:

      passed
      

    Function: test_attrdict_dir

    • Test 84

      📌 Setup phase

      duration:

      0.0002320010680705309
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.00014004693366587162
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00013875006698071957
      

      outcome:

      passed
      
    • Test 85

      📌 Setup phase

      duration:

      0.0002403021790087223
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.0001626329030841589
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00013436190783977509
      

      outcome:

      passed
      

    Function: test_attrdict_getattr_and_missing

    • Test 86

      📌 Setup phase

      duration:

      0.0003108801320195198
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.00013866694644093513
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.0001786169596016407
      

      outcome:

      passed
      
    • Test 87

      📌 Setup phase

      duration:

      0.00030319299548864365
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.0001680511049926281
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.0001718420535326004
      

      outcome:

      passed
      

    Function: test_dictupdatemixin_init_and_update

    • Test 88

      📌 Setup phase

      duration:

      0.0003025890327990055
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.00015673693269491196
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00016800477169454098
      

      outcome:

      passed
      
    • Test 89

      📌 Setup phase

      duration:

      0.0003201458603143692
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.00015547708608210087
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.0001647451426833868
      

      outcome:

      passed
      
    • Test 90

      📌 Setup phase

      duration:

      0.0003123700153082609
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.00014519994147121906
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00017501716502010822
      

      outcome:

      passed
      
    • Test 91

      📌 Setup phase

      duration:

      0.000296891201287508
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.00014554010704159737
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00016843387857079506
      

      outcome:

      passed
      
    • Test 92

      📌 Setup phase

      duration:

      0.0002948360051959753
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.00015202793292701244
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.0001714741811156273
      

      outcome:

      passed
      
    • Test 93

      📌 Setup phase

      duration:

      0.00031134020537137985
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.00029362598434090614
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00017827213741838932
      

      outcome:

      passed
      
  • 📄 test_utils_dotdir.py

    Function: test_dotdir_creation_and_base_exists

    • Test 94

      📌 Setup phase

      duration:

      0.0016362378373742104
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.0002699289470911026
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.0002251989208161831
      

      outcome:

      passed
      

    Function: test_dotdir_repr_returns_path_str

    • Test 95

      📌 Setup phase

      duration:

      0.0006200831849128008
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.00025275605730712414
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.0002054409123957157
      

      outcome:

      passed
      

    Function: test_dotdir_call

    • Test 96

      📌 Setup phase

      duration:

      0.0006581798661500216
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.000231890007853508
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.0002106300089508295
      

      outcome:

      passed
      
  • 📄 test_utils_jsonext.py

    Function: test_json_validate_save_load

    • Test 97

      📌 Setup phase

      duration:

      0.0005975179374217987
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.0004754778929054737
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00019349087961018085
      

      outcome:

      passed
      
    • Test 98

      📌 Setup phase

      duration:

      0.0006207290571182966
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.0003873209934681654
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.0001794649288058281
      

      outcome:

      passed
      
    • Test 99

      📌 Setup phase

      duration:

      0.0005956529639661312
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.00040145800448954105
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00018125888891518116
      

      outcome:

      passed
      
    • Test 100

      📌 Setup phase

      duration:

      0.0005905369762331247
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.0003704279661178589
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00022319983690977097
      

      outcome:

      passed
      
    • Test 101

      📌 Setup phase

      duration:

      0.0005703549832105637
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.00037072692066431046
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00017798389308154583
      

      outcome:

      passed
      
    • Test 102

      📌 Setup phase

      duration:

      0.000582398846745491
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.0004085840191692114
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00023993593640625477
      

      outcome:

      passed
      
    • Test 103

      📌 Setup phase

      duration:

      0.0006087629590183496
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.0004039430059492588
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00020911009050905704
      

      outcome:

      passed
      
    • Test 104

      📌 Setup phase

      duration:

      0.0007071220315992832
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.0005616701673716307
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00019026407971978188
      

      outcome:

      passed
      
  • 📄 test_utils_picklio.py

    Function: test_pickle_and_unpickle

    • Test 106

      📌 Setup phase

      duration:

      0.0012501650489866734
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.000501939794048667
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00020296103321015835
      

      outcome:

      passed
      
    • Test 107

      📌 Setup phase

      duration:

      0.0006133501883596182
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.00032087904401123524
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00016866018995642662
      

      outcome:

      passed
      
    • Test 108

      📌 Setup phase

      duration:

      0.0005715710576623678
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.0002887630835175514
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.0001631749328225851
      

      outcome:

      passed
      
    • Test 109

      📌 Setup phase

      duration:

      0.0006578720640391111
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.00029444904066622257
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00018847710452973843
      

      outcome:

      passed
      
    • Test 110

      📌 Setup phase

      duration:

      0.0006190768908709288
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.0002974539529532194
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00015978002920746803
      

      outcome:

      passed
      
    • Test 111

      📌 Setup phase

      duration:

      0.0005659230519086123
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.0002978129778057337
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.00020248303189873695
      

      outcome:

      passed
      
    • Test 112

      📌 Setup phase

      duration:

      0.000552506884559989
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.00033723912201821804
      

      outcome:

      passed
      

      📌 Teardown phase

      duration:

      0.0008332869037985802
      

      outcome:

      passed
      
Failed (3)
  • 📄 test_utils_debug.py

    Function: test_short_repr

    • Test 72

      📌 Setup phase

      duration:

      0.000269648851826787
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.0009545639622956514
      

      outcome:

      failed
      

      crash:

      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: AssertionError
      

      longrepr:

      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.0003346849698573351
      

      outcome:

      passed
      
    • Test 76

      📌 Setup phase

      duration:

      0.0002677480224519968
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      0.0006074619013816118
      

      outcome:

      failed
      

      crash:

      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: AssertionError
      

      longrepr:

      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.00025464617647230625
      

      outcome:

      passed
      
  • 📄 test_utils_lazypv.py

    Function: test_getattr

    • Test 105

      📌 Setup phase

      duration:

      0.00012765987776219845
      

      outcome:

      passed
      

      📌 Call phase

      duration:

      3.0990490571130067
      

      outcome:

      failed
      

      crash:

      path: /workspace/tligui_y/slic/tests/test_utils_lazypv.py
      lineno: 53
      message: AssertionError: Expected dict because form='time'
      assert False
       +  where False = isinstance(None, dict)
      

      traceback:

      -   path: tests/test_utils_lazypv.py
        lineno: 53
        message: AssertionError
      

      longrepr:

      def test_getattr():
              # Only valid kwargs accepted by epics.PV
              pv = PV(
                  "ca://TEST:FLOAT",
                  form='time',
                  auto_monitor=True,
                  verbose=True,
                  connection_timeout=3.0
              )
      
              # Pv not yet instantiated
              assert pv._pv is None
      
              # Trigger instantiation by accessing a real attribute
              pvname = pv.__getattr__('pvname')
              assert isinstance(pvname, str)
              assert pvname == "ca://TEST:FLOAT"
              assert pv._pv is not None
      
              # access all known epics.PV kwargs via __getattr__
              form = pv.__getattr__('form')
              assert form == 'time'
      
              auto_monitor = pv.__getattr__('auto_monitor')
              assert auto_monitor is True
      
              verbose = pv.__getattr__('verbose')
              assert verbose is True
      
              timeout = pv.__getattr__('connection_timeout')
              assert isinstance(timeout, (float, int))
              assert timeout == 3.0
      
              # Have the get() method from (__getattr__) to get all the parameters in a dict
              get_method = pv.__getattr__('get')
              assert callable(get_method) # Check if it's really a function
      
              result = get_method()
      >       assert isinstance(result, dict), "Expected dict because form='time'"
      E       AssertionError: Expected dict because form='time'
      E       assert False
      E        +  where False = isinstance(None, dict)
      
      tests/test_utils_lazypv.py:53: AssertionError
      

      📌 Teardown phase

      duration:

      0.0004899378400295973
      

      outcome:

      passed
      

📚 Collected files

(1 tests)
    • Outcome: passed
    • result:
    -   nodeid: .
      type: Dir
    
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
      
    • ci-reports/allure/data
      • Outcome: passed
      • result:
      -   nodeid: ci-reports/allure/data/test-cases
        type: Dir
      
    • ci-reports/allure/data/test-cases
      • Outcome: passed
      • result:
      []
      
    • ci-reports/allure/export
      • Outcome: passed
      • result:
      []
      
    • ci-reports/allure/history
      • Outcome: passed
      • result:
      []
      
    • 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
      
    • ci-reports/allure/plugin/behaviors
      • Outcome: passed
      • result:
      []
      
    • ci-reports/allure/plugin/packages
      • Outcome: passed
      • result:
      []
      
    • ci-reports/allure/plugin/screen-diff
      • Outcome: passed
      • result:
      []
      
    • ci-reports/allure/widgets
      • Outcome: passed
      • result:
      []
      
    • ci-reports/junit
      • Outcome: passed
      • result:
      []
      
    • ci-reports/markdown
      • Outcome: passed
      • result:
      []
      
outputs (1 tests)
  • outputs
    • Outcome: passed
    • result:
    []
    
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
      
    • slic/core/acquisition
      • Outcome: passed
      • result:
      -   nodeid: slic/core/acquisition/broker
        type: Package
      
    • slic/core/acquisition/broker
      • Outcome: passed
      • result:
      []
      
    • slic/core/adjustable
      • Outcome: passed
      • result:
      []
      
    • slic/core/condition
      • Outcome: passed
      • result:
      []
      
    • slic/core/device
      • Outcome: passed
      • result:
      []
      
    • slic/core/scanner
      • Outcome: passed
      • result:
      []
      
    • slic/core/sensor
      • Outcome: passed
      • result:
      []
      
    • slic/core/task
      • Outcome: passed
      • result:
      []
      
    • 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
      
    • slic/devices/cameras
      • Outcome: passed
      • result:
      []
      
    • slic/devices/endstations
      • Outcome: passed
      • result:
      []
      
    • slic/devices/general
      • Outcome: passed
      • result:
      -   nodeid: slic/devices/general/detectors
        type: Package
      -   nodeid: slic/devices/general/unused
        type: Dir
      
    • slic/devices/general/detectors
      • Outcome: passed
      • result:
      []
      
    • slic/devices/general/unused
      • Outcome: passed
      • result:
      []
      
    • slic/devices/loptics
      • Outcome: passed
      • result:
      []
      
    • slic/devices/timing
      • Outcome: passed
      • result:
      -   nodeid: slic/devices/timing/events
        type: Package
      
    • slic/devices/timing/events
      • Outcome: passed
      • result:
      []
      
    • slic/devices/xdiagnostics
      • Outcome: passed
      • result:
      []
      
    • slic/devices/xoptics
      • Outcome: passed
      • result:
      -   nodeid: slic/devices/xoptics/slits
        type: Package
      -   nodeid: slic/devices/xoptics/unused
        type: Dir
      
    • slic/devices/xoptics/slits
      • Outcome: passed
      • result:
      []
      
    • slic/devices/xoptics/unused
      • Outcome: passed
      • result:
      []
      
    • slic/gui
      • Outcome: passed
      • result:
      -   nodeid: slic/gui/daqpanels
        type: Package
      -   nodeid: slic/gui/widgets
        type: Package
      
    • slic/gui/daqpanels
      • Outcome: passed
      • result:
      []
      
    • slic/gui/widgets
      • Outcome: passed
      • result:
      []
      
    • slic/utils
      • Outcome: passed
      • result:
      -   nodeid: slic/utils/ioc
        type: Package
      -   nodeid: slic/utils/unused
        type: Dir
      
    • slic/utils/ioc
      • Outcome: passed
      • result:
      []
      
    • slic/utils/unused
      • Outcome: passed
      • result:
      -   nodeid: slic/utils/unused/xsim
        type: Package
      
    • slic/utils/unused/xsim
      • Outcome: passed
      • result:
      []
      
temp-ci (1 tests)
  • temp-ci
    • Outcome: passed
    • result:
    []
    
tests (10 tests)
  • tests
    • Outcome: passed
    • result:
    -   nodeid: tests/test_utils_ask_yes_no.py
      type: Module
    -   nodeid: tests/test_utils_channels.py
      type: Module
    -   nodeid: tests/test_utils_cpint.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_jsonext.py
      type: Module
    -   nodeid: tests/test_utils_lazypv.py
      type: Module
    -   nodeid: tests/test_utils_picklio.py
      type: Module
    
    • 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
      
    • 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
      
    • 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
      
    • 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
      
    • 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
      
    • 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
      
    • 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
      
    • tests/test_utils_lazypv.py
      • Outcome: passed
      • result:
      -   nodeid: tests/test_utils_lazypv.py::test_getattr
        type: Function
        lineno: 14
      
    • 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
      
. (1 tests)
  • .
    • Outcome: passed
    • result:
    -   nodeid: ci-reports
      type: Dir
    -   nodeid: outputs
      type: Dir
    -   nodeid: slic
      type: Package
    -   nodeid: temp-ci
      type: Dir
    -   nodeid: tests
      type: Dir
    

⚠️ Warnings

Warnings #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 #2
message: pkg_resources is deprecated as an API. See https://setuptools.pypa.io/en/latest/pkg_resources.html
category: DeprecationWarning
when: collect
filename: /workspace/tligui_y/slic/.pixi/envs/default/lib/python3.8/site-packages/pyepics-3.4.3-py3.9.egg/epics/ca.py
lineno: 28
Warnings #3
message: Deprecated call to `pkg_resources.declare_namespace('mpl_toolkits')`.
Implementing implicit namespace packages (as specified in PEP 420) is preferred to `pkg_resources.declare_namespace`. See https://setuptools.pypa.io/en/latest/references/keywords.html#keyword-namespace-packages
category: DeprecationWarning
when: collect
filename: /workspace/tligui_y/slic/.pixi/envs/default/lib/python3.8/site-packages/pkg_resources/__init__.py
lineno: 3154
Warnings #4
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