diff --git a/markdown/TEST-REPORT.md b/markdown/TEST-REPORT.md index 3d7fa6751..82805a6b6 100644 --- a/markdown/TEST-REPORT.md +++ b/markdown/TEST-REPORT.md @@ -1,34 +1,57 @@ # ๐Ÿงช Test Report -*Generated on 2025-08-12 16:42:30 CEST* +*Generated on 2025-08-12 16:46:32 CEST* ## ๐Ÿงพ General Info -- **duration**: 4.729110479354858 +- **duration**: 44.98698687553406 - **root**: /workspace/tligui_y/slic - **environment**: {} ## ๐Ÿ“‹ Summary -- **Error**: 25 +- **Failed**: 25 - **Total**: 25 - **Collected**: 25 ## ๐Ÿ”Ž Tests
-โŒ Error (25) +โŒ Failed (25) -
๐Ÿ“„ test_utils_reprate.py โ†ณ Function: test_get_beamline -
- โŒ Test 1 + โŒ Test 1
params: instrument="alvra", expected_beamline="aramis"
+ **_*๐Ÿ“Œ Runtime Parameters*_** + + ```python + params: + instrument: alvra + expected_beamline: aramis + id: alvra-aramis + ``` + **_*๐Ÿ“Œ Setup phase*_** **duration:** ```python - 0.0007493402808904648 + 0.0006251591257750988 + ``` + + **outcome:** + + ```python + passed + ``` + + **_*๐Ÿ“Œ Call phase*_** + + **duration:** + + ```python + 0.00019574910402297974 ``` **outcome:** @@ -37,24 +60,41 @@ failed ``` + **crash:** + + ```python + path: /workspace/tligui_y/slic/tests/test_utils_reprate.py + lineno: 17 + message: NameError: name 'get_beamline' is not defined + ``` + + **traceback:** + + ```python + - path: tests/test_utils_reprate.py + lineno: 17 + message: NameError + ``` + **longrepr:** ```python - file /workspace/tligui_y/slic/tests/test_utils_reprate.py, line 7 - @pytest.mark.parametrize("instrument,expected_beamline", [ - ("alvra", "aramis"), - ("bernina", "aramis"), - ("cristallina", "aramis"), - ("diavolezza", "athos"), - ("maloja", "athos"), - ("furka", "athos") - ]) - def test_get_beamline(instrument, expected_beamline, setup_ioc): - E fixture 'setup_ioc' not found - > available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, cov, doctest_namespace, extra, extras, include_metadata_in_junit_xml, json_metadata, metadata, monkeypatch, no_cover, pytestconfig, record_property, record_testsuite_property, record_xml_attribute, recwarn, start_ioc, time_machine, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory - > use 'pytest --fixtures [testpath]' for help on them. + instrument = 'alvra', expected_beamline = 'aramis' - /workspace/tligui_y/slic/tests/test_utils_reprate.py:7 + @pytest.mark.parametrize("instrument,expected_beamline", [ + ("alvra", "aramis"), + ("bernina", "aramis"), + ("cristallina", "aramis"), + ("diavolezza", "athos"), + ("maloja", "athos"), + ("furka", "athos") + ]) + def test_get_beamline(instrument, expected_beamline): + """Test the beamline retrieval for a given instrument.""" + > beamline = get_beamline(instrument) + E NameError: name 'get_beamline' is not defined + + tests/test_utils_reprate.py:17: NameError ``` **_*๐Ÿ“Œ Teardown phase*_** @@ -62,7 +102,7 @@ **duration:** ```python - 0.00029032863676548004 + 0.00036884984001517296 ``` **outcome:** @@ -72,14 +112,37 @@ ```
-
- โŒ Test 2 + โŒ Test 2
params: instrument="bernina", expected_beamline="aramis"
+ **_*๐Ÿ“Œ Runtime Parameters*_** + + ```python + params: + instrument: bernina + expected_beamline: aramis + id: bernina-aramis + ``` + **_*๐Ÿ“Œ Setup phase*_** **duration:** ```python - 0.0002658627927303314 + 0.00027963612228631973 + ``` + + **outcome:** + + ```python + passed + ``` + + **_*๐Ÿ“Œ Call phase*_** + + **duration:** + + ```python + 0.00017753895372152328 ``` **outcome:** @@ -88,24 +151,41 @@ failed ``` + **crash:** + + ```python + path: /workspace/tligui_y/slic/tests/test_utils_reprate.py + lineno: 17 + message: NameError: name 'get_beamline' is not defined + ``` + + **traceback:** + + ```python + - path: tests/test_utils_reprate.py + lineno: 17 + message: NameError + ``` + **longrepr:** ```python - file /workspace/tligui_y/slic/tests/test_utils_reprate.py, line 7 - @pytest.mark.parametrize("instrument,expected_beamline", [ - ("alvra", "aramis"), - ("bernina", "aramis"), - ("cristallina", "aramis"), - ("diavolezza", "athos"), - ("maloja", "athos"), - ("furka", "athos") - ]) - def test_get_beamline(instrument, expected_beamline, setup_ioc): - E fixture 'setup_ioc' not found - > available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, cov, doctest_namespace, extra, extras, include_metadata_in_junit_xml, json_metadata, metadata, monkeypatch, no_cover, pytestconfig, record_property, record_testsuite_property, record_xml_attribute, recwarn, start_ioc, time_machine, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory - > use 'pytest --fixtures [testpath]' for help on them. + instrument = 'bernina', expected_beamline = 'aramis' - /workspace/tligui_y/slic/tests/test_utils_reprate.py:7 + @pytest.mark.parametrize("instrument,expected_beamline", [ + ("alvra", "aramis"), + ("bernina", "aramis"), + ("cristallina", "aramis"), + ("diavolezza", "athos"), + ("maloja", "athos"), + ("furka", "athos") + ]) + def test_get_beamline(instrument, expected_beamline): + """Test the beamline retrieval for a given instrument.""" + > beamline = get_beamline(instrument) + E NameError: name 'get_beamline' is not defined + + tests/test_utils_reprate.py:17: NameError ``` **_*๐Ÿ“Œ Teardown phase*_** @@ -113,7 +193,7 @@ **duration:** ```python - 0.00016033975407481194 + 0.00018078181892633438 ``` **outcome:** @@ -123,14 +203,37 @@ ```
-
- โŒ Test 3 + โŒ Test 3
params: instrument="cristallina", expected_beamline="aramis"
+ **_*๐Ÿ“Œ Runtime Parameters*_** + + ```python + params: + instrument: cristallina + expected_beamline: aramis + id: cristallina-aramis + ``` + **_*๐Ÿ“Œ Setup phase*_** **duration:** ```python - 0.00024340907111763954 + 0.0002489369362592697 + ``` + + **outcome:** + + ```python + passed + ``` + + **_*๐Ÿ“Œ Call phase*_** + + **duration:** + + ```python + 0.00015116296708583832 ``` **outcome:** @@ -139,24 +242,41 @@ failed ``` + **crash:** + + ```python + path: /workspace/tligui_y/slic/tests/test_utils_reprate.py + lineno: 17 + message: NameError: name 'get_beamline' is not defined + ``` + + **traceback:** + + ```python + - path: tests/test_utils_reprate.py + lineno: 17 + message: NameError + ``` + **longrepr:** ```python - file /workspace/tligui_y/slic/tests/test_utils_reprate.py, line 7 - @pytest.mark.parametrize("instrument,expected_beamline", [ - ("alvra", "aramis"), - ("bernina", "aramis"), - ("cristallina", "aramis"), - ("diavolezza", "athos"), - ("maloja", "athos"), - ("furka", "athos") - ]) - def test_get_beamline(instrument, expected_beamline, setup_ioc): - E fixture 'setup_ioc' not found - > available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, cov, doctest_namespace, extra, extras, include_metadata_in_junit_xml, json_metadata, metadata, monkeypatch, no_cover, pytestconfig, record_property, record_testsuite_property, record_xml_attribute, recwarn, start_ioc, time_machine, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory - > use 'pytest --fixtures [testpath]' for help on them. + instrument = 'cristallina', expected_beamline = 'aramis' - /workspace/tligui_y/slic/tests/test_utils_reprate.py:7 + @pytest.mark.parametrize("instrument,expected_beamline", [ + ("alvra", "aramis"), + ("bernina", "aramis"), + ("cristallina", "aramis"), + ("diavolezza", "athos"), + ("maloja", "athos"), + ("furka", "athos") + ]) + def test_get_beamline(instrument, expected_beamline): + """Test the beamline retrieval for a given instrument.""" + > beamline = get_beamline(instrument) + E NameError: name 'get_beamline' is not defined + + tests/test_utils_reprate.py:17: NameError ``` **_*๐Ÿ“Œ Teardown phase*_** @@ -164,7 +284,7 @@ **duration:** ```python - 0.00016400497406721115 + 0.0001728772185742855 ``` **outcome:** @@ -174,14 +294,37 @@ ```
-
- โŒ Test 4 + โŒ Test 4
params: instrument="diavolezza", expected_beamline="athos"
+ **_*๐Ÿ“Œ Runtime Parameters*_** + + ```python + params: + instrument: diavolezza + expected_beamline: athos + id: diavolezza-athos + ``` + **_*๐Ÿ“Œ Setup phase*_** **duration:** ```python - 0.00025037722662091255 + 0.0002289717085659504 + ``` + + **outcome:** + + ```python + passed + ``` + + **_*๐Ÿ“Œ Call phase*_** + + **duration:** + + ```python + 0.00014679599553346634 ``` **outcome:** @@ -190,24 +333,41 @@ failed ``` + **crash:** + + ```python + path: /workspace/tligui_y/slic/tests/test_utils_reprate.py + lineno: 17 + message: NameError: name 'get_beamline' is not defined + ``` + + **traceback:** + + ```python + - path: tests/test_utils_reprate.py + lineno: 17 + message: NameError + ``` + **longrepr:** ```python - file /workspace/tligui_y/slic/tests/test_utils_reprate.py, line 7 - @pytest.mark.parametrize("instrument,expected_beamline", [ - ("alvra", "aramis"), - ("bernina", "aramis"), - ("cristallina", "aramis"), - ("diavolezza", "athos"), - ("maloja", "athos"), - ("furka", "athos") - ]) - def test_get_beamline(instrument, expected_beamline, setup_ioc): - E fixture 'setup_ioc' not found - > available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, cov, doctest_namespace, extra, extras, include_metadata_in_junit_xml, json_metadata, metadata, monkeypatch, no_cover, pytestconfig, record_property, record_testsuite_property, record_xml_attribute, recwarn, start_ioc, time_machine, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory - > use 'pytest --fixtures [testpath]' for help on them. + instrument = 'diavolezza', expected_beamline = 'athos' - /workspace/tligui_y/slic/tests/test_utils_reprate.py:7 + @pytest.mark.parametrize("instrument,expected_beamline", [ + ("alvra", "aramis"), + ("bernina", "aramis"), + ("cristallina", "aramis"), + ("diavolezza", "athos"), + ("maloja", "athos"), + ("furka", "athos") + ]) + def test_get_beamline(instrument, expected_beamline): + """Test the beamline retrieval for a given instrument.""" + > beamline = get_beamline(instrument) + E NameError: name 'get_beamline' is not defined + + tests/test_utils_reprate.py:17: NameError ``` **_*๐Ÿ“Œ Teardown phase*_** @@ -215,7 +375,7 @@ **duration:** ```python - 0.00014716805890202522 + 0.00017174100503325462 ``` **outcome:** @@ -225,14 +385,37 @@ ```
-
- โŒ Test 5 + โŒ Test 5
params: instrument="maloja", expected_beamline="athos"
+ **_*๐Ÿ“Œ Runtime Parameters*_** + + ```python + params: + instrument: maloja + expected_beamline: athos + id: maloja-athos + ``` + **_*๐Ÿ“Œ Setup phase*_** **duration:** ```python - 0.0002556033432483673 + 0.0002244538627564907 + ``` + + **outcome:** + + ```python + passed + ``` + + **_*๐Ÿ“Œ Call phase*_** + + **duration:** + + ```python + 0.00014678901061415672 ``` **outcome:** @@ -241,24 +424,41 @@ failed ``` + **crash:** + + ```python + path: /workspace/tligui_y/slic/tests/test_utils_reprate.py + lineno: 17 + message: NameError: name 'get_beamline' is not defined + ``` + + **traceback:** + + ```python + - path: tests/test_utils_reprate.py + lineno: 17 + message: NameError + ``` + **longrepr:** ```python - file /workspace/tligui_y/slic/tests/test_utils_reprate.py, line 7 - @pytest.mark.parametrize("instrument,expected_beamline", [ - ("alvra", "aramis"), - ("bernina", "aramis"), - ("cristallina", "aramis"), - ("diavolezza", "athos"), - ("maloja", "athos"), - ("furka", "athos") - ]) - def test_get_beamline(instrument, expected_beamline, setup_ioc): - E fixture 'setup_ioc' not found - > available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, cov, doctest_namespace, extra, extras, include_metadata_in_junit_xml, json_metadata, metadata, monkeypatch, no_cover, pytestconfig, record_property, record_testsuite_property, record_xml_attribute, recwarn, start_ioc, time_machine, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory - > use 'pytest --fixtures [testpath]' for help on them. + instrument = 'maloja', expected_beamline = 'athos' - /workspace/tligui_y/slic/tests/test_utils_reprate.py:7 + @pytest.mark.parametrize("instrument,expected_beamline", [ + ("alvra", "aramis"), + ("bernina", "aramis"), + ("cristallina", "aramis"), + ("diavolezza", "athos"), + ("maloja", "athos"), + ("furka", "athos") + ]) + def test_get_beamline(instrument, expected_beamline): + """Test the beamline retrieval for a given instrument.""" + > beamline = get_beamline(instrument) + E NameError: name 'get_beamline' is not defined + + tests/test_utils_reprate.py:17: NameError ``` **_*๐Ÿ“Œ Teardown phase*_** @@ -266,7 +466,7 @@ **duration:** ```python - 0.00016998033970594406 + 0.00018551573157310486 ``` **outcome:** @@ -276,14 +476,37 @@ ```
-
- โŒ Test 6 + โŒ Test 6
params: instrument="furka", expected_beamline="athos"
+ **_*๐Ÿ“Œ Runtime Parameters*_** + + ```python + params: + instrument: furka + expected_beamline: athos + id: furka-athos + ``` + **_*๐Ÿ“Œ Setup phase*_** **duration:** ```python - 0.00023693079128861427 + 0.00022587599232792854 + ``` + + **outcome:** + + ```python + passed + ``` + + **_*๐Ÿ“Œ Call phase*_** + + **duration:** + + ```python + 0.00015553878620266914 ``` **outcome:** @@ -292,24 +515,41 @@ failed ``` + **crash:** + + ```python + path: /workspace/tligui_y/slic/tests/test_utils_reprate.py + lineno: 17 + message: NameError: name 'get_beamline' is not defined + ``` + + **traceback:** + + ```python + - path: tests/test_utils_reprate.py + lineno: 17 + message: NameError + ``` + **longrepr:** ```python - file /workspace/tligui_y/slic/tests/test_utils_reprate.py, line 7 - @pytest.mark.parametrize("instrument,expected_beamline", [ - ("alvra", "aramis"), - ("bernina", "aramis"), - ("cristallina", "aramis"), - ("diavolezza", "athos"), - ("maloja", "athos"), - ("furka", "athos") - ]) - def test_get_beamline(instrument, expected_beamline, setup_ioc): - E fixture 'setup_ioc' not found - > available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, cov, doctest_namespace, extra, extras, include_metadata_in_junit_xml, json_metadata, metadata, monkeypatch, no_cover, pytestconfig, record_property, record_testsuite_property, record_xml_attribute, recwarn, start_ioc, time_machine, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory - > use 'pytest --fixtures [testpath]' for help on them. + instrument = 'furka', expected_beamline = 'athos' - /workspace/tligui_y/slic/tests/test_utils_reprate.py:7 + @pytest.mark.parametrize("instrument,expected_beamline", [ + ("alvra", "aramis"), + ("bernina", "aramis"), + ("cristallina", "aramis"), + ("diavolezza", "athos"), + ("maloja", "athos"), + ("furka", "athos") + ]) + def test_get_beamline(instrument, expected_beamline): + """Test the beamline retrieval for a given instrument.""" + > beamline = get_beamline(instrument) + E NameError: name 'get_beamline' is not defined + + tests/test_utils_reprate.py:17: NameError ``` **_*๐Ÿ“Œ Teardown phase*_** @@ -317,7 +557,7 @@ **duration:** ```python - 0.000170133076608181 + 0.00017277291044592857 ``` **outcome:** @@ -335,7 +575,21 @@ **duration:** ```python - 0.00014337105676531792 + 0.0001168171875178814 + ``` + + **outcome:** + + ```python + passed + ``` + + **_*๐Ÿ“Œ Call phase*_** + + **duration:** + + ```python + 0.00014580925926566124 ``` **outcome:** @@ -344,16 +598,32 @@ failed ``` + **crash:** + + ```python + path: /workspace/tligui_y/slic/tests/test_utils_reprate.py + lineno: 23 + message: NameError: name 'patch' is not defined + ``` + + **traceback:** + + ```python + - path: tests/test_utils_reprate.py + lineno: 23 + message: NameError + ``` + **longrepr:** ```python - file /workspace/tligui_y/slic/tests/test_utils_reprate.py, line 20 - def test_get_pvname_reprate_for_inferred_beamline(setup_ioc): - E fixture 'setup_ioc' not found - > available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, cov, doctest_namespace, extra, extras, include_metadata_in_junit_xml, json_metadata, metadata, monkeypatch, no_cover, pytestconfig, record_property, record_testsuite_property, record_xml_attribute, recwarn, start_ioc, time_machine, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory - > use 'pytest --fixtures [testpath]' for help on them. + def test_get_pvname_reprate_for_inferred_beamline(): + """Test the PV name retrieval when using inferred beamline based on IP address.""" + # Mock the socket to simulate an IP address + > with patch("socket.gethostname", return_value="testhost"), patch("socket.gethostbyname", return_value="129.129.242"): + E NameError: name 'patch' is not defined - /workspace/tligui_y/slic/tests/test_utils_reprate.py:20 + tests/test_utils_reprate.py:23: NameError ``` **_*๐Ÿ“Œ Teardown phase*_** @@ -361,7 +631,7 @@ **duration:** ```python - 0.00012584170326590538 + 0.00014422880485653877 ``` **outcome:** @@ -372,14 +642,37 @@
โ†ณ Function: test_infer_beamline_from_ip -
- โŒ Test 8 + โŒ Test 8
params: ip="129.129.242", expected_instrument="alvra"
+ **_*๐Ÿ“Œ Runtime Parameters*_** + + ```python + params: + ip: 129.129.242 + expected_instrument: alvra + id: 129.129.242-alvra + ``` + **_*๐Ÿ“Œ Setup phase*_** **duration:** ```python - 0.00025480473414063454 + 0.00023102527484297752 + ``` + + **outcome:** + + ```python + passed + ``` + + **_*๐Ÿ“Œ Call phase*_** + + **duration:** + + ```python + 0.00016229692846536636 ``` **outcome:** @@ -388,24 +681,42 @@ failed ``` + **crash:** + + ```python + path: /workspace/tligui_y/slic/tests/test_utils_reprate.py + lineno: 39 + message: NameError: name 'patch' is not defined + ``` + + **traceback:** + + ```python + - path: tests/test_utils_reprate.py + lineno: 39 + message: NameError + ``` + **longrepr:** ```python - file /workspace/tligui_y/slic/tests/test_utils_reprate.py, line 28 - @pytest.mark.parametrize("ip,expected_instrument", [ - ("129.129.242", "alvra"), - ("129.129.243", "bernina"), - ("129.129.244", "cristallina"), - ("129.129.245", "diavolezza"), - ("129.129.246", "maloja"), - ("129.129.247", "furka") - ]) - def test_infer_beamline_from_ip(ip, expected_instrument, setup_ioc): - E fixture 'setup_ioc' not found - > available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, cov, doctest_namespace, extra, extras, include_metadata_in_junit_xml, json_metadata, metadata, monkeypatch, no_cover, pytestconfig, record_property, record_testsuite_property, record_xml_attribute, recwarn, start_ioc, time_machine, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory - > use 'pytest --fixtures [testpath]' for help on them. + ip = '129.129.242', expected_instrument = 'alvra' - /workspace/tligui_y/slic/tests/test_utils_reprate.py:28 + @pytest.mark.parametrize("ip,expected_instrument", [ + ("129.129.242", "alvra"), + ("129.129.243", "bernina"), + ("129.129.244", "cristallina"), + ("129.129.245", "diavolezza"), + ("129.129.246", "maloja"), + ("129.129.247", "furka") + ]) + def test_infer_beamline_from_ip(ip, expected_instrument): + """Test that the beamline is correctly inferred based on the IP address.""" + # Mock the socket functions to simulate an IP address + > with patch("socket.gethostname", return_value="testhost"), patch("socket.gethostbyname", return_value=ip): + E NameError: name 'patch' is not defined + + tests/test_utils_reprate.py:39: NameError ``` **_*๐Ÿ“Œ Teardown phase*_** @@ -413,7 +724,7 @@ **duration:** ```python - 0.00018341606482863426 + 0.00017371680587530136 ``` **outcome:** @@ -423,14 +734,37 @@ ```
-
- โŒ Test 9 + โŒ Test 9
params: ip="129.129.243", expected_instrument="bernina"
+ **_*๐Ÿ“Œ Runtime Parameters*_** + + ```python + params: + ip: 129.129.243 + expected_instrument: bernina + id: 129.129.243-bernina + ``` + **_*๐Ÿ“Œ Setup phase*_** **duration:** ```python - 0.000274833757430315 + 0.00022310297936201096 + ``` + + **outcome:** + + ```python + passed + ``` + + **_*๐Ÿ“Œ Call phase*_** + + **duration:** + + ```python + 0.00015955884009599686 ``` **outcome:** @@ -439,24 +773,42 @@ failed ``` + **crash:** + + ```python + path: /workspace/tligui_y/slic/tests/test_utils_reprate.py + lineno: 39 + message: NameError: name 'patch' is not defined + ``` + + **traceback:** + + ```python + - path: tests/test_utils_reprate.py + lineno: 39 + message: NameError + ``` + **longrepr:** ```python - file /workspace/tligui_y/slic/tests/test_utils_reprate.py, line 28 - @pytest.mark.parametrize("ip,expected_instrument", [ - ("129.129.242", "alvra"), - ("129.129.243", "bernina"), - ("129.129.244", "cristallina"), - ("129.129.245", "diavolezza"), - ("129.129.246", "maloja"), - ("129.129.247", "furka") - ]) - def test_infer_beamline_from_ip(ip, expected_instrument, setup_ioc): - E fixture 'setup_ioc' not found - > available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, cov, doctest_namespace, extra, extras, include_metadata_in_junit_xml, json_metadata, metadata, monkeypatch, no_cover, pytestconfig, record_property, record_testsuite_property, record_xml_attribute, recwarn, start_ioc, time_machine, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory - > use 'pytest --fixtures [testpath]' for help on them. + ip = '129.129.243', expected_instrument = 'bernina' - /workspace/tligui_y/slic/tests/test_utils_reprate.py:28 + @pytest.mark.parametrize("ip,expected_instrument", [ + ("129.129.242", "alvra"), + ("129.129.243", "bernina"), + ("129.129.244", "cristallina"), + ("129.129.245", "diavolezza"), + ("129.129.246", "maloja"), + ("129.129.247", "furka") + ]) + def test_infer_beamline_from_ip(ip, expected_instrument): + """Test that the beamline is correctly inferred based on the IP address.""" + # Mock the socket functions to simulate an IP address + > with patch("socket.gethostname", return_value="testhost"), patch("socket.gethostbyname", return_value=ip): + E NameError: name 'patch' is not defined + + tests/test_utils_reprate.py:39: NameError ``` **_*๐Ÿ“Œ Teardown phase*_** @@ -464,7 +816,7 @@ **duration:** ```python - 0.00017648888751864433 + 0.00016975589096546173 ``` **outcome:** @@ -474,14 +826,37 @@ ```
-
- โŒ Test 10 + โŒ Test 10
params: ip="129.129.244", expected_instrument="cristallina"
+ **_*๐Ÿ“Œ Runtime Parameters*_** + + ```python + params: + ip: 129.129.244 + expected_instrument: cristallina + id: 129.129.244-cristallina + ``` + **_*๐Ÿ“Œ Setup phase*_** **duration:** ```python - 0.00025285501033067703 + 0.00022522499784827232 + ``` + + **outcome:** + + ```python + passed + ``` + + **_*๐Ÿ“Œ Call phase*_** + + **duration:** + + ```python + 0.00015114014968276024 ``` **outcome:** @@ -490,24 +865,42 @@ failed ``` + **crash:** + + ```python + path: /workspace/tligui_y/slic/tests/test_utils_reprate.py + lineno: 39 + message: NameError: name 'patch' is not defined + ``` + + **traceback:** + + ```python + - path: tests/test_utils_reprate.py + lineno: 39 + message: NameError + ``` + **longrepr:** ```python - file /workspace/tligui_y/slic/tests/test_utils_reprate.py, line 28 - @pytest.mark.parametrize("ip,expected_instrument", [ - ("129.129.242", "alvra"), - ("129.129.243", "bernina"), - ("129.129.244", "cristallina"), - ("129.129.245", "diavolezza"), - ("129.129.246", "maloja"), - ("129.129.247", "furka") - ]) - def test_infer_beamline_from_ip(ip, expected_instrument, setup_ioc): - E fixture 'setup_ioc' not found - > available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, cov, doctest_namespace, extra, extras, include_metadata_in_junit_xml, json_metadata, metadata, monkeypatch, no_cover, pytestconfig, record_property, record_testsuite_property, record_xml_attribute, recwarn, start_ioc, time_machine, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory - > use 'pytest --fixtures [testpath]' for help on them. + ip = '129.129.244', expected_instrument = 'cristallina' - /workspace/tligui_y/slic/tests/test_utils_reprate.py:28 + @pytest.mark.parametrize("ip,expected_instrument", [ + ("129.129.242", "alvra"), + ("129.129.243", "bernina"), + ("129.129.244", "cristallina"), + ("129.129.245", "diavolezza"), + ("129.129.246", "maloja"), + ("129.129.247", "furka") + ]) + def test_infer_beamline_from_ip(ip, expected_instrument): + """Test that the beamline is correctly inferred based on the IP address.""" + # Mock the socket functions to simulate an IP address + > with patch("socket.gethostname", return_value="testhost"), patch("socket.gethostbyname", return_value=ip): + E NameError: name 'patch' is not defined + + tests/test_utils_reprate.py:39: NameError ``` **_*๐Ÿ“Œ Teardown phase*_** @@ -515,7 +908,7 @@ **duration:** ```python - 0.00016480591148138046 + 0.00016904156655073166 ``` **outcome:** @@ -525,14 +918,37 @@ ```
-
- โŒ Test 11 + โŒ Test 11
params: ip="129.129.245", expected_instrument="diavolezza"
+ **_*๐Ÿ“Œ Runtime Parameters*_** + + ```python + params: + ip: 129.129.245 + expected_instrument: diavolezza + id: 129.129.245-diavolezza + ``` + **_*๐Ÿ“Œ Setup phase*_** **duration:** ```python - 0.0002520526759326458 + 0.00022405432537198067 + ``` + + **outcome:** + + ```python + passed + ``` + + **_*๐Ÿ“Œ Call phase*_** + + **duration:** + + ```python + 0.0001450730487704277 ``` **outcome:** @@ -541,24 +957,42 @@ failed ``` + **crash:** + + ```python + path: /workspace/tligui_y/slic/tests/test_utils_reprate.py + lineno: 39 + message: NameError: name 'patch' is not defined + ``` + + **traceback:** + + ```python + - path: tests/test_utils_reprate.py + lineno: 39 + message: NameError + ``` + **longrepr:** ```python - file /workspace/tligui_y/slic/tests/test_utils_reprate.py, line 28 - @pytest.mark.parametrize("ip,expected_instrument", [ - ("129.129.242", "alvra"), - ("129.129.243", "bernina"), - ("129.129.244", "cristallina"), - ("129.129.245", "diavolezza"), - ("129.129.246", "maloja"), - ("129.129.247", "furka") - ]) - def test_infer_beamline_from_ip(ip, expected_instrument, setup_ioc): - E fixture 'setup_ioc' not found - > available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, cov, doctest_namespace, extra, extras, include_metadata_in_junit_xml, json_metadata, metadata, monkeypatch, no_cover, pytestconfig, record_property, record_testsuite_property, record_xml_attribute, recwarn, start_ioc, time_machine, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory - > use 'pytest --fixtures [testpath]' for help on them. + ip = '129.129.245', expected_instrument = 'diavolezza' - /workspace/tligui_y/slic/tests/test_utils_reprate.py:28 + @pytest.mark.parametrize("ip,expected_instrument", [ + ("129.129.242", "alvra"), + ("129.129.243", "bernina"), + ("129.129.244", "cristallina"), + ("129.129.245", "diavolezza"), + ("129.129.246", "maloja"), + ("129.129.247", "furka") + ]) + def test_infer_beamline_from_ip(ip, expected_instrument): + """Test that the beamline is correctly inferred based on the IP address.""" + # Mock the socket functions to simulate an IP address + > with patch("socket.gethostname", return_value="testhost"), patch("socket.gethostbyname", return_value=ip): + E NameError: name 'patch' is not defined + + tests/test_utils_reprate.py:39: NameError ``` **_*๐Ÿ“Œ Teardown phase*_** @@ -566,7 +1000,7 @@ **duration:** ```python - 0.00016375677660107613 + 0.00017444416880607605 ``` **outcome:** @@ -576,14 +1010,37 @@ ```
-
- โŒ Test 12 + โŒ Test 12
params: ip="129.129.246", expected_instrument="maloja"
+ **_*๐Ÿ“Œ Runtime Parameters*_** + + ```python + params: + ip: 129.129.246 + expected_instrument: maloja + id: 129.129.246-maloja + ``` + **_*๐Ÿ“Œ Setup phase*_** **duration:** ```python - 0.0002599521540105343 + 0.00022431230172514915 + ``` + + **outcome:** + + ```python + passed + ``` + + **_*๐Ÿ“Œ Call phase*_** + + **duration:** + + ```python + 0.00015002721920609474 ``` **outcome:** @@ -592,24 +1049,42 @@ failed ``` + **crash:** + + ```python + path: /workspace/tligui_y/slic/tests/test_utils_reprate.py + lineno: 39 + message: NameError: name 'patch' is not defined + ``` + + **traceback:** + + ```python + - path: tests/test_utils_reprate.py + lineno: 39 + message: NameError + ``` + **longrepr:** ```python - file /workspace/tligui_y/slic/tests/test_utils_reprate.py, line 28 - @pytest.mark.parametrize("ip,expected_instrument", [ - ("129.129.242", "alvra"), - ("129.129.243", "bernina"), - ("129.129.244", "cristallina"), - ("129.129.245", "diavolezza"), - ("129.129.246", "maloja"), - ("129.129.247", "furka") - ]) - def test_infer_beamline_from_ip(ip, expected_instrument, setup_ioc): - E fixture 'setup_ioc' not found - > available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, cov, doctest_namespace, extra, extras, include_metadata_in_junit_xml, json_metadata, metadata, monkeypatch, no_cover, pytestconfig, record_property, record_testsuite_property, record_xml_attribute, recwarn, start_ioc, time_machine, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory - > use 'pytest --fixtures [testpath]' for help on them. + ip = '129.129.246', expected_instrument = 'maloja' - /workspace/tligui_y/slic/tests/test_utils_reprate.py:28 + @pytest.mark.parametrize("ip,expected_instrument", [ + ("129.129.242", "alvra"), + ("129.129.243", "bernina"), + ("129.129.244", "cristallina"), + ("129.129.245", "diavolezza"), + ("129.129.246", "maloja"), + ("129.129.247", "furka") + ]) + def test_infer_beamline_from_ip(ip, expected_instrument): + """Test that the beamline is correctly inferred based on the IP address.""" + # Mock the socket functions to simulate an IP address + > with patch("socket.gethostname", return_value="testhost"), patch("socket.gethostbyname", return_value=ip): + E NameError: name 'patch' is not defined + + tests/test_utils_reprate.py:39: NameError ``` **_*๐Ÿ“Œ Teardown phase*_** @@ -617,7 +1092,7 @@ **duration:** ```python - 0.00016868812963366508 + 0.00017553521320223808 ``` **outcome:** @@ -627,14 +1102,37 @@ ```
-
- โŒ Test 13 + โŒ Test 13
params: ip="129.129.247", expected_instrument="furka"
+ **_*๐Ÿ“Œ Runtime Parameters*_** + + ```python + params: + ip: 129.129.247 + expected_instrument: furka + id: 129.129.247-furka + ``` + **_*๐Ÿ“Œ Setup phase*_** **duration:** ```python - 0.00025742920115590096 + 0.00022372836247086525 + ``` + + **outcome:** + + ```python + passed + ``` + + **_*๐Ÿ“Œ Call phase*_** + + **duration:** + + ```python + 0.0001480639912188053 ``` **outcome:** @@ -643,24 +1141,42 @@ failed ``` + **crash:** + + ```python + path: /workspace/tligui_y/slic/tests/test_utils_reprate.py + lineno: 39 + message: NameError: name 'patch' is not defined + ``` + + **traceback:** + + ```python + - path: tests/test_utils_reprate.py + lineno: 39 + message: NameError + ``` + **longrepr:** ```python - file /workspace/tligui_y/slic/tests/test_utils_reprate.py, line 28 - @pytest.mark.parametrize("ip,expected_instrument", [ - ("129.129.242", "alvra"), - ("129.129.243", "bernina"), - ("129.129.244", "cristallina"), - ("129.129.245", "diavolezza"), - ("129.129.246", "maloja"), - ("129.129.247", "furka") - ]) - def test_infer_beamline_from_ip(ip, expected_instrument, setup_ioc): - E fixture 'setup_ioc' not found - > available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, cov, doctest_namespace, extra, extras, include_metadata_in_junit_xml, json_metadata, metadata, monkeypatch, no_cover, pytestconfig, record_property, record_testsuite_property, record_xml_attribute, recwarn, start_ioc, time_machine, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory - > use 'pytest --fixtures [testpath]' for help on them. + ip = '129.129.247', expected_instrument = 'furka' - /workspace/tligui_y/slic/tests/test_utils_reprate.py:28 + @pytest.mark.parametrize("ip,expected_instrument", [ + ("129.129.242", "alvra"), + ("129.129.243", "bernina"), + ("129.129.244", "cristallina"), + ("129.129.245", "diavolezza"), + ("129.129.246", "maloja"), + ("129.129.247", "furka") + ]) + def test_infer_beamline_from_ip(ip, expected_instrument): + """Test that the beamline is correctly inferred based on the IP address.""" + # Mock the socket functions to simulate an IP address + > with patch("socket.gethostname", return_value="testhost"), patch("socket.gethostbyname", return_value=ip): + E NameError: name 'patch' is not defined + + tests/test_utils_reprate.py:39: NameError ``` **_*๐Ÿ“Œ Teardown phase*_** @@ -668,7 +1184,7 @@ **duration:** ```python - 0.0001705843023955822 + 0.00017020292580127716 ``` **outcome:** @@ -679,14 +1195,38 @@
โ†ณ Function: test_get_pvname_reprate_with_instrument_and_beamline -
- โŒ Test 14 + โŒ Test 14
params: instrument="alvra", beamline="aramis", pvname="SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB"
+ **_*๐Ÿ“Œ Runtime Parameters*_** + + ```python + params: + instrument: alvra + beamline: aramis + pvname: SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB + id: alvra-aramis-SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB + ``` + **_*๐Ÿ“Œ Setup phase*_** **duration:** ```python - 0.0002960287965834141 + 0.00026961416006088257 + ``` + + **outcome:** + + ```python + passed + ``` + + **_*๐Ÿ“Œ Call phase*_** + + **duration:** + + ```python + 0.0001488872803747654 ``` **outcome:** @@ -695,24 +1235,42 @@ failed ``` + **crash:** + + ```python + path: /workspace/tligui_y/slic/tests/test_utils_reprate.py + lineno: 53 + message: NameError: name 'get_pvname_reprate' is not defined + ``` + + **traceback:** + + ```python + - path: tests/test_utils_reprate.py + lineno: 53 + message: NameError + ``` + **longrepr:** ```python - file /workspace/tligui_y/slic/tests/test_utils_reprate.py, line 43 - @pytest.mark.parametrize("instrument,beamline,pvname", [ - ("alvra", "aramis", "SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB"), - ("bernina", "aramis", "SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB"), - ("cristallina", "aramis", "SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB"), - ("diavolezza", "athos", "SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB"), - ("maloja", "athos", "SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB"), - ("furka", "athos", "SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB") - ]) - def test_get_pvname_reprate_with_instrument_and_beamline(instrument, beamline, pvname, setup_ioc): - E fixture 'setup_ioc' not found - > available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, cov, doctest_namespace, extra, extras, include_metadata_in_junit_xml, json_metadata, metadata, monkeypatch, no_cover, pytestconfig, record_property, record_testsuite_property, record_xml_attribute, recwarn, start_ioc, time_machine, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory - > use 'pytest --fixtures [testpath]' for help on them. + instrument = 'alvra', beamline = 'aramis' + pvname = 'SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB' - /workspace/tligui_y/slic/tests/test_utils_reprate.py:43 + @pytest.mark.parametrize("instrument,beamline,pvname", [ + ("alvra", "aramis", "SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB"), + ("bernina", "aramis", "SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB"), + ("cristallina", "aramis", "SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB"), + ("diavolezza", "athos", "SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB"), + ("maloja", "athos", "SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB"), + ("furka", "athos", "SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB") + ]) + def test_get_pvname_reprate_with_instrument_and_beamline(instrument, beamline, pvname): + """Test that the PV name is correctly retrieved based on instrument and beamline.""" + > retrieved_pvname = get_pvname_reprate(instrument, beamline) + E NameError: name 'get_pvname_reprate' is not defined + + tests/test_utils_reprate.py:53: NameError ``` **_*๐Ÿ“Œ Teardown phase*_** @@ -720,7 +1278,7 @@ **duration:** ```python - 0.00017248699441552162 + 0.00018408428877592087 ``` **outcome:** @@ -730,14 +1288,38 @@ ```
-
- โŒ Test 15 + โŒ Test 15
params: instrument="bernina", beamline="aramis", pvname="SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB"
+ **_*๐Ÿ“Œ Runtime Parameters*_** + + ```python + params: + instrument: bernina + beamline: aramis + pvname: SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB + id: bernina-aramis-SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB + ``` + **_*๐Ÿ“Œ Setup phase*_** **duration:** ```python - 0.00029520271345973015 + 0.00026374170556664467 + ``` + + **outcome:** + + ```python + passed + ``` + + **_*๐Ÿ“Œ Call phase*_** + + **duration:** + + ```python + 0.0001592552289366722 ``` **outcome:** @@ -746,24 +1328,42 @@ failed ``` + **crash:** + + ```python + path: /workspace/tligui_y/slic/tests/test_utils_reprate.py + lineno: 53 + message: NameError: name 'get_pvname_reprate' is not defined + ``` + + **traceback:** + + ```python + - path: tests/test_utils_reprate.py + lineno: 53 + message: NameError + ``` + **longrepr:** ```python - file /workspace/tligui_y/slic/tests/test_utils_reprate.py, line 43 - @pytest.mark.parametrize("instrument,beamline,pvname", [ - ("alvra", "aramis", "SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB"), - ("bernina", "aramis", "SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB"), - ("cristallina", "aramis", "SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB"), - ("diavolezza", "athos", "SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB"), - ("maloja", "athos", "SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB"), - ("furka", "athos", "SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB") - ]) - def test_get_pvname_reprate_with_instrument_and_beamline(instrument, beamline, pvname, setup_ioc): - E fixture 'setup_ioc' not found - > available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, cov, doctest_namespace, extra, extras, include_metadata_in_junit_xml, json_metadata, metadata, monkeypatch, no_cover, pytestconfig, record_property, record_testsuite_property, record_xml_attribute, recwarn, start_ioc, time_machine, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory - > use 'pytest --fixtures [testpath]' for help on them. + instrument = 'bernina', beamline = 'aramis' + pvname = 'SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB' - /workspace/tligui_y/slic/tests/test_utils_reprate.py:43 + @pytest.mark.parametrize("instrument,beamline,pvname", [ + ("alvra", "aramis", "SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB"), + ("bernina", "aramis", "SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB"), + ("cristallina", "aramis", "SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB"), + ("diavolezza", "athos", "SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB"), + ("maloja", "athos", "SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB"), + ("furka", "athos", "SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB") + ]) + def test_get_pvname_reprate_with_instrument_and_beamline(instrument, beamline, pvname): + """Test that the PV name is correctly retrieved based on instrument and beamline.""" + > retrieved_pvname = get_pvname_reprate(instrument, beamline) + E NameError: name 'get_pvname_reprate' is not defined + + tests/test_utils_reprate.py:53: NameError ``` **_*๐Ÿ“Œ Teardown phase*_** @@ -771,7 +1371,7 @@ **duration:** ```python - 0.0001803138293325901 + 0.00018347380682826042 ``` **outcome:** @@ -781,14 +1381,38 @@ ```
-
- โŒ Test 16 + โŒ Test 16
params: instrument="cristallina", beamline="aramis", pvname="SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB"
+ **_*๐Ÿ“Œ Runtime Parameters*_** + + ```python + params: + instrument: cristallina + beamline: aramis + pvname: SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB + id: cristallina-aramis-SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB + ``` + **_*๐Ÿ“Œ Setup phase*_** **duration:** ```python - 0.00029843300580978394 + 0.00027245376259088516 + ``` + + **outcome:** + + ```python + passed + ``` + + **_*๐Ÿ“Œ Call phase*_** + + **duration:** + + ```python + 0.0001491042785346508 ``` **outcome:** @@ -797,24 +1421,42 @@ failed ``` + **crash:** + + ```python + path: /workspace/tligui_y/slic/tests/test_utils_reprate.py + lineno: 53 + message: NameError: name 'get_pvname_reprate' is not defined + ``` + + **traceback:** + + ```python + - path: tests/test_utils_reprate.py + lineno: 53 + message: NameError + ``` + **longrepr:** ```python - file /workspace/tligui_y/slic/tests/test_utils_reprate.py, line 43 - @pytest.mark.parametrize("instrument,beamline,pvname", [ - ("alvra", "aramis", "SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB"), - ("bernina", "aramis", "SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB"), - ("cristallina", "aramis", "SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB"), - ("diavolezza", "athos", "SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB"), - ("maloja", "athos", "SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB"), - ("furka", "athos", "SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB") - ]) - def test_get_pvname_reprate_with_instrument_and_beamline(instrument, beamline, pvname, setup_ioc): - E fixture 'setup_ioc' not found - > available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, cov, doctest_namespace, extra, extras, include_metadata_in_junit_xml, json_metadata, metadata, monkeypatch, no_cover, pytestconfig, record_property, record_testsuite_property, record_xml_attribute, recwarn, start_ioc, time_machine, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory - > use 'pytest --fixtures [testpath]' for help on them. + instrument = 'cristallina', beamline = 'aramis' + pvname = 'SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB' - /workspace/tligui_y/slic/tests/test_utils_reprate.py:43 + @pytest.mark.parametrize("instrument,beamline,pvname", [ + ("alvra", "aramis", "SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB"), + ("bernina", "aramis", "SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB"), + ("cristallina", "aramis", "SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB"), + ("diavolezza", "athos", "SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB"), + ("maloja", "athos", "SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB"), + ("furka", "athos", "SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB") + ]) + def test_get_pvname_reprate_with_instrument_and_beamline(instrument, beamline, pvname): + """Test that the PV name is correctly retrieved based on instrument and beamline.""" + > retrieved_pvname = get_pvname_reprate(instrument, beamline) + E NameError: name 'get_pvname_reprate' is not defined + + tests/test_utils_reprate.py:53: NameError ``` **_*๐Ÿ“Œ Teardown phase*_** @@ -822,7 +1464,7 @@ **duration:** ```python - 0.00017090002074837685 + 0.00018107611685991287 ``` **outcome:** @@ -832,14 +1474,38 @@ ```
-
- โŒ Test 17 + โŒ Test 17
params: instrument="diavolezza", beamline="athos", pvname="SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB"
+ **_*๐Ÿ“Œ Runtime Parameters*_** + + ```python + params: + instrument: diavolezza + beamline: athos + pvname: SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB + id: diavolezza-athos-SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB + ``` + **_*๐Ÿ“Œ Setup phase*_** **duration:** ```python - 0.00027886126190423965 + 0.0002651219256222248 + ``` + + **outcome:** + + ```python + passed + ``` + + **_*๐Ÿ“Œ Call phase*_** + + **duration:** + + ```python + 0.0001491815783083439 ``` **outcome:** @@ -848,24 +1514,42 @@ failed ``` + **crash:** + + ```python + path: /workspace/tligui_y/slic/tests/test_utils_reprate.py + lineno: 53 + message: NameError: name 'get_pvname_reprate' is not defined + ``` + + **traceback:** + + ```python + - path: tests/test_utils_reprate.py + lineno: 53 + message: NameError + ``` + **longrepr:** ```python - file /workspace/tligui_y/slic/tests/test_utils_reprate.py, line 43 - @pytest.mark.parametrize("instrument,beamline,pvname", [ - ("alvra", "aramis", "SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB"), - ("bernina", "aramis", "SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB"), - ("cristallina", "aramis", "SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB"), - ("diavolezza", "athos", "SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB"), - ("maloja", "athos", "SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB"), - ("furka", "athos", "SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB") - ]) - def test_get_pvname_reprate_with_instrument_and_beamline(instrument, beamline, pvname, setup_ioc): - E fixture 'setup_ioc' not found - > available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, cov, doctest_namespace, extra, extras, include_metadata_in_junit_xml, json_metadata, metadata, monkeypatch, no_cover, pytestconfig, record_property, record_testsuite_property, record_xml_attribute, recwarn, start_ioc, time_machine, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory - > use 'pytest --fixtures [testpath]' for help on them. + instrument = 'diavolezza', beamline = 'athos' + pvname = 'SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB' - /workspace/tligui_y/slic/tests/test_utils_reprate.py:43 + @pytest.mark.parametrize("instrument,beamline,pvname", [ + ("alvra", "aramis", "SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB"), + ("bernina", "aramis", "SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB"), + ("cristallina", "aramis", "SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB"), + ("diavolezza", "athos", "SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB"), + ("maloja", "athos", "SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB"), + ("furka", "athos", "SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB") + ]) + def test_get_pvname_reprate_with_instrument_and_beamline(instrument, beamline, pvname): + """Test that the PV name is correctly retrieved based on instrument and beamline.""" + > retrieved_pvname = get_pvname_reprate(instrument, beamline) + E NameError: name 'get_pvname_reprate' is not defined + + tests/test_utils_reprate.py:53: NameError ``` **_*๐Ÿ“Œ Teardown phase*_** @@ -873,7 +1557,7 @@ **duration:** ```python - 0.00016166409477591515 + 0.00019512884318828583 ``` **outcome:** @@ -883,14 +1567,38 @@ ```
-
- โŒ Test 18 + โŒ Test 18
params: instrument="maloja", beamline="athos", pvname="SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB"
+ **_*๐Ÿ“Œ Runtime Parameters*_** + + ```python + params: + instrument: maloja + beamline: athos + pvname: SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB + id: maloja-athos-SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB + ``` + **_*๐Ÿ“Œ Setup phase*_** **duration:** ```python - 0.0002797609195113182 + 0.000265300739556551 + ``` + + **outcome:** + + ```python + passed + ``` + + **_*๐Ÿ“Œ Call phase*_** + + **duration:** + + ```python + 0.00014799833297729492 ``` **outcome:** @@ -899,24 +1607,42 @@ failed ``` + **crash:** + + ```python + path: /workspace/tligui_y/slic/tests/test_utils_reprate.py + lineno: 53 + message: NameError: name 'get_pvname_reprate' is not defined + ``` + + **traceback:** + + ```python + - path: tests/test_utils_reprate.py + lineno: 53 + message: NameError + ``` + **longrepr:** ```python - file /workspace/tligui_y/slic/tests/test_utils_reprate.py, line 43 - @pytest.mark.parametrize("instrument,beamline,pvname", [ - ("alvra", "aramis", "SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB"), - ("bernina", "aramis", "SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB"), - ("cristallina", "aramis", "SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB"), - ("diavolezza", "athos", "SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB"), - ("maloja", "athos", "SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB"), - ("furka", "athos", "SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB") - ]) - def test_get_pvname_reprate_with_instrument_and_beamline(instrument, beamline, pvname, setup_ioc): - E fixture 'setup_ioc' not found - > available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, cov, doctest_namespace, extra, extras, include_metadata_in_junit_xml, json_metadata, metadata, monkeypatch, no_cover, pytestconfig, record_property, record_testsuite_property, record_xml_attribute, recwarn, start_ioc, time_machine, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory - > use 'pytest --fixtures [testpath]' for help on them. + instrument = 'maloja', beamline = 'athos' + pvname = 'SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB' - /workspace/tligui_y/slic/tests/test_utils_reprate.py:43 + @pytest.mark.parametrize("instrument,beamline,pvname", [ + ("alvra", "aramis", "SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB"), + ("bernina", "aramis", "SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB"), + ("cristallina", "aramis", "SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB"), + ("diavolezza", "athos", "SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB"), + ("maloja", "athos", "SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB"), + ("furka", "athos", "SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB") + ]) + def test_get_pvname_reprate_with_instrument_and_beamline(instrument, beamline, pvname): + """Test that the PV name is correctly retrieved based on instrument and beamline.""" + > retrieved_pvname = get_pvname_reprate(instrument, beamline) + E NameError: name 'get_pvname_reprate' is not defined + + tests/test_utils_reprate.py:53: NameError ``` **_*๐Ÿ“Œ Teardown phase*_** @@ -924,7 +1650,7 @@ **duration:** ```python - 0.0001736348494887352 + 0.00018071476370096207 ``` **outcome:** @@ -934,14 +1660,38 @@ ```
-
- โŒ Test 19 + โŒ Test 19
params: instrument="furka", beamline="athos", pvname="SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB"
+ **_*๐Ÿ“Œ Runtime Parameters*_** + + ```python + params: + instrument: furka + beamline: athos + pvname: SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB + id: furka-athos-SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB + ``` + **_*๐Ÿ“Œ Setup phase*_** **duration:** ```python - 0.0002861940301954746 + 0.0002671908587217331 + ``` + + **outcome:** + + ```python + passed + ``` + + **_*๐Ÿ“Œ Call phase*_** + + **duration:** + + ```python + 0.00015861773863434792 ``` **outcome:** @@ -950,24 +1700,42 @@ failed ``` + **crash:** + + ```python + path: /workspace/tligui_y/slic/tests/test_utils_reprate.py + lineno: 53 + message: NameError: name 'get_pvname_reprate' is not defined + ``` + + **traceback:** + + ```python + - path: tests/test_utils_reprate.py + lineno: 53 + message: NameError + ``` + **longrepr:** ```python - file /workspace/tligui_y/slic/tests/test_utils_reprate.py, line 43 - @pytest.mark.parametrize("instrument,beamline,pvname", [ - ("alvra", "aramis", "SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB"), - ("bernina", "aramis", "SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB"), - ("cristallina", "aramis", "SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB"), - ("diavolezza", "athos", "SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB"), - ("maloja", "athos", "SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB"), - ("furka", "athos", "SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB") - ]) - def test_get_pvname_reprate_with_instrument_and_beamline(instrument, beamline, pvname, setup_ioc): - E fixture 'setup_ioc' not found - > available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, cov, doctest_namespace, extra, extras, include_metadata_in_junit_xml, json_metadata, metadata, monkeypatch, no_cover, pytestconfig, record_property, record_testsuite_property, record_xml_attribute, recwarn, start_ioc, time_machine, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory - > use 'pytest --fixtures [testpath]' for help on them. + instrument = 'furka', beamline = 'athos' + pvname = 'SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB' - /workspace/tligui_y/slic/tests/test_utils_reprate.py:43 + @pytest.mark.parametrize("instrument,beamline,pvname", [ + ("alvra", "aramis", "SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB"), + ("bernina", "aramis", "SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB"), + ("cristallina", "aramis", "SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB"), + ("diavolezza", "athos", "SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB"), + ("maloja", "athos", "SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB"), + ("furka", "athos", "SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB") + ]) + def test_get_pvname_reprate_with_instrument_and_beamline(instrument, beamline, pvname): + """Test that the PV name is correctly retrieved based on instrument and beamline.""" + > retrieved_pvname = get_pvname_reprate(instrument, beamline) + E NameError: name 'get_pvname_reprate' is not defined + + tests/test_utils_reprate.py:53: NameError ``` **_*๐Ÿ“Œ Teardown phase*_** @@ -975,7 +1743,7 @@ **duration:** ```python - 0.00017443206161260605 + 0.00021021626889705658 ``` **outcome:** @@ -993,7 +1761,21 @@ **duration:** ```python - 0.00014163414016366005 + 0.00011828402057290077 + ``` + + **outcome:** + + ```python + passed + ``` + + **_*๐Ÿ“Œ Call phase*_** + + **duration:** + + ```python + 0.0002735080197453499 ``` **outcome:** @@ -1002,16 +1784,55 @@ failed ``` + **crash:** + + ```python + path: /workspace/tligui_y/slic/slic/utils/reprate.py + lineno: 70 + message: AttributeError: 'NoneType' object has no attribute 'capitalize' + ``` + + **traceback:** + + ```python + - path: tests/test_utils_reprate.py + lineno: 59 + message: None + - path: slic/utils/reprate.py + lineno: 70 + message: AttributeError + ``` + **longrepr:** ```python - file /workspace/tligui_y/slic/tests/test_utils_reprate.py, line 56 - def test_invalid_instrument_or_beamline(setup_ioc): - E fixture 'setup_ioc' not found - > available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, cov, doctest_namespace, extra, extras, include_metadata_in_junit_xml, json_metadata, metadata, monkeypatch, no_cover, pytestconfig, record_property, record_testsuite_property, record_xml_attribute, recwarn, start_ioc, time_machine, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory - > use 'pytest --fixtures [testpath]' for help on them. + def test_invalid_instrument_or_beamline(): + """Test that None is returned when an invalid instrument or beamline is provided.""" + # Invalid instrument + > monitor = RepRateMonitor(target="invalid_instrument") - /workspace/tligui_y/slic/tests/test_utils_reprate.py:56 + tests/test_utils_reprate.py:59: + _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ + + self = <[AttributeError("'RepRateMonitor' object has no attribute 'name'") raised in repr()] RepRateMonitor object at 0x7ff7354bb880> + target = 'invalid_instrument' + + def __init__(self, target=None): + if target is not None: + target = target.lower() + + instrument = target if target in INSTRUMENTS else None + beamline = target if target in BEAMLINES else None + + if beamline is None: + beamline = get_beamline(instrument) + + pvname = get_pvname_reprate(instrument, beamline) + + > beamline = beamline.capitalize() + E AttributeError: 'NoneType' object has no attribute 'capitalize' + + slic/utils/reprate.py:70: AttributeError ``` **_*๐Ÿ“Œ Teardown phase*_** @@ -1019,7 +1840,7 @@ **duration:** ```python - 0.00012134900316596031 + 0.0001454101875424385 ``` **outcome:** @@ -1037,7 +1858,21 @@ **duration:** ```python - 0.0001392001286149025 + 0.00011640787124633789 + ``` + + **outcome:** + + ```python + passed + ``` + + **_*๐Ÿ“Œ Call phase*_** + + **duration:** + + ```python + 20.10348570998758 ``` **outcome:** @@ -1046,16 +1881,38 @@ failed ``` + **crash:** + + ```python + path: /workspace/tligui_y/slic/tests/test_utils_reprate.py + lineno: 71 + message: AssertionError: Expected 20.0, but got None + assert None == 20.0 + + where None = Aramis Rep. Rate: None None.value + ``` + + **traceback:** + + ```python + - path: tests/test_utils_reprate.py + lineno: 71 + message: AssertionError + ``` + **longrepr:** ```python - file /workspace/tligui_y/slic/tests/test_utils_reprate.py, line 66 - def test_monitor_value_update(setup_ioc): - E fixture 'setup_ioc' not found - > available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, cov, doctest_namespace, extra, extras, include_metadata_in_junit_xml, json_metadata, metadata, monkeypatch, no_cover, pytestconfig, record_property, record_testsuite_property, record_xml_attribute, recwarn, start_ioc, time_machine, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory - > use 'pytest --fixtures [testpath]' for help on them. + def test_monitor_value_update(): + #Test that the RepRateMonitor correctly updates its value and units + monitor = RepRateMonitor("alvra") # Example instrument + + # Check that the initial value is 20.0 and the units are correct + > assert monitor.value == 20.0, f"Expected 20.0, but got {monitor.value}" + E AssertionError: Expected 20.0, but got None + E assert None == 20.0 + E + where None = Aramis Rep. Rate: None None.value - /workspace/tligui_y/slic/tests/test_utils_reprate.py:66 + tests/test_utils_reprate.py:71: AssertionError ``` **_*๐Ÿ“Œ Teardown phase*_** @@ -1063,7 +1920,7 @@ **duration:** ```python - 0.00012780260294675827 + 0.00041046785190701485 ``` **outcome:** @@ -1081,7 +1938,21 @@ **duration:** ```python - 0.00013825297355651855 + 0.0002155364491045475 + ``` + + **outcome:** + + ```python + passed + ``` + + **_*๐Ÿ“Œ Call phase*_** + + **duration:** + + ```python + 20.00168715696782 ``` **outcome:** @@ -1090,16 +1961,50 @@ failed ``` + **crash:** + + ```python + path: /workspace/tligui_y/slic/tests/test_utils_reprate.py + lineno: 98 + message: AssertionError: Expected 'Aramis Rep. Rate: 20.0 Hz', but got 'Aramis Rep. Rate: None None' + assert 'Aramis Rep. Rate: None None' == 'Aramis Rep. Rate: 20.0 Hz' + + - Aramis Rep. Rate: 20.0 Hz + + Aramis Rep. Rate: None None + ``` + + **traceback:** + + ```python + - path: tests/test_utils_reprate.py + lineno: 98 + message: AssertionError + ``` + **longrepr:** ```python - file /workspace/tligui_y/slic/tests/test_utils_reprate.py, line 85 - def test_repr_method_with_initial_values(setup_ioc): - E fixture 'setup_ioc' not found - > available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, cov, doctest_namespace, extra, extras, include_metadata_in_junit_xml, json_metadata, metadata, monkeypatch, no_cover, pytestconfig, record_property, record_testsuite_property, record_xml_attribute, recwarn, start_ioc, time_machine, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory - > use 'pytest --fixtures [testpath]' for help on them. + def test_repr_method_with_initial_values(): + # Test __repr__ + monitor = RepRateMonitor("alvra") + + # Expected initial values + expected_name = "Aramis Rep. Rate" + expected_value = 20.0 + expected_units = "Hz" + + # Expected representation + expected_repr = f"{expected_name}: {expected_value} {expected_units}" + + # Check that the __repr__ method returns the expected string + > assert repr(monitor) == expected_repr, f"Expected '{expected_repr}', but got '{repr(monitor)}'" + E AssertionError: Expected 'Aramis Rep. Rate: 20.0 Hz', but got 'Aramis Rep. Rate: None None' + E assert 'Aramis Rep. Rate: None None' == 'Aramis Rep. Rate: 20.0 Hz' + E + E - Aramis Rep. Rate: 20.0 Hz + E + Aramis Rep. Rate: None None - /workspace/tligui_y/slic/tests/test_utils_reprate.py:85 + tests/test_utils_reprate.py:98: AssertionError ``` **_*๐Ÿ“Œ Teardown phase*_** @@ -1107,7 +2012,7 @@ **duration:** ```python - 0.00011812523007392883 + 0.0002026609145104885 ``` **outcome:** @@ -1118,14 +2023,36 @@
โ†ณ Function: test_invalid_target_handling -
- โŒ Test 23 + โŒ Test 23
params: invalid_target="invalid_instrument"
+ **_*๐Ÿ“Œ Runtime Parameters*_** + + ```python + params: + invalid_target: invalid_instrument + id: invalid_instrument + ``` + **_*๐Ÿ“Œ Setup phase*_** **duration:** ```python - 0.00021359603852033615 + 0.0003997604362666607 + ``` + + **outcome:** + + ```python + passed + ``` + + **_*๐Ÿ“Œ Call phase*_** + + **duration:** + + ```python + 0.0004198583774268627 ``` **outcome:** @@ -1134,20 +2061,60 @@ failed ``` + **crash:** + + ```python + path: /workspace/tligui_y/slic/slic/utils/reprate.py + lineno: 70 + message: AttributeError: 'NoneType' object has no attribute 'capitalize' + ``` + + **traceback:** + + ```python + - path: tests/test_utils_reprate.py + lineno: 107 + message: None + - path: slic/utils/reprate.py + lineno: 70 + message: AttributeError + ``` + **longrepr:** ```python - file /workspace/tligui_y/slic/tests/test_utils_reprate.py, line 101 - @pytest.mark.parametrize("invalid_target", [ - "invalid_instrument", # Non-existent instrument - "non_existing_beamline" # Non-existent beamline - ]) - def test_invalid_target_handling(invalid_target, setup_ioc): - E fixture 'setup_ioc' not found - > available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, cov, doctest_namespace, extra, extras, include_metadata_in_junit_xml, json_metadata, metadata, monkeypatch, no_cover, pytestconfig, record_property, record_testsuite_property, record_xml_attribute, recwarn, start_ioc, time_machine, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory - > use 'pytest --fixtures [testpath]' for help on them. + invalid_target = 'invalid_instrument' - /workspace/tligui_y/slic/tests/test_utils_reprate.py:101 + @pytest.mark.parametrize("invalid_target", [ + "invalid_instrument", # Non-existent instrument + "non_existing_beamline" # Non-existent beamline + ]) + def test_invalid_target_handling(invalid_target): + # Test that an invalid target correctly results in None for PV name.""" + > monitor = RepRateMonitor(invalid_target) + + tests/test_utils_reprate.py:107: + _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ + + self = <[AttributeError("'RepRateMonitor' object has no attribute 'name'") raised in repr()] RepRateMonitor object at 0x7ff72fa66520> + target = 'invalid_instrument' + + def __init__(self, target=None): + if target is not None: + target = target.lower() + + instrument = target if target in INSTRUMENTS else None + beamline = target if target in BEAMLINES else None + + if beamline is None: + beamline = get_beamline(instrument) + + pvname = get_pvname_reprate(instrument, beamline) + + > beamline = beamline.capitalize() + E AttributeError: 'NoneType' object has no attribute 'capitalize' + + slic/utils/reprate.py:70: AttributeError ``` **_*๐Ÿ“Œ Teardown phase*_** @@ -1155,7 +2122,7 @@ **duration:** ```python - 0.00014065392315387726 + 0.00019546505063772202 ``` **outcome:** @@ -1165,14 +2132,36 @@ ```
-
- โŒ Test 24 + โŒ Test 24
params: invalid_target="non_existing_beamline"
+ **_*๐Ÿ“Œ Runtime Parameters*_** + + ```python + params: + invalid_target: non_existing_beamline + id: non_existing_beamline + ``` + **_*๐Ÿ“Œ Setup phase*_** **duration:** ```python - 0.00019537098705768585 + 0.00022458191961050034 + ``` + + **outcome:** + + ```python + passed + ``` + + **_*๐Ÿ“Œ Call phase*_** + + **duration:** + + ```python + 0.00023952079936861992 ``` **outcome:** @@ -1181,20 +2170,60 @@ failed ``` + **crash:** + + ```python + path: /workspace/tligui_y/slic/slic/utils/reprate.py + lineno: 70 + message: AttributeError: 'NoneType' object has no attribute 'capitalize' + ``` + + **traceback:** + + ```python + - path: tests/test_utils_reprate.py + lineno: 107 + message: None + - path: slic/utils/reprate.py + lineno: 70 + message: AttributeError + ``` + **longrepr:** ```python - file /workspace/tligui_y/slic/tests/test_utils_reprate.py, line 101 - @pytest.mark.parametrize("invalid_target", [ - "invalid_instrument", # Non-existent instrument - "non_existing_beamline" # Non-existent beamline - ]) - def test_invalid_target_handling(invalid_target, setup_ioc): - E fixture 'setup_ioc' not found - > available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, cov, doctest_namespace, extra, extras, include_metadata_in_junit_xml, json_metadata, metadata, monkeypatch, no_cover, pytestconfig, record_property, record_testsuite_property, record_xml_attribute, recwarn, start_ioc, time_machine, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory - > use 'pytest --fixtures [testpath]' for help on them. + invalid_target = 'non_existing_beamline' - /workspace/tligui_y/slic/tests/test_utils_reprate.py:101 + @pytest.mark.parametrize("invalid_target", [ + "invalid_instrument", # Non-existent instrument + "non_existing_beamline" # Non-existent beamline + ]) + def test_invalid_target_handling(invalid_target): + # Test that an invalid target correctly results in None for PV name.""" + > monitor = RepRateMonitor(invalid_target) + + tests/test_utils_reprate.py:107: + _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ + + self = <[AttributeError("'RepRateMonitor' object has no attribute 'name'") raised in repr()] RepRateMonitor object at 0x7ff72fa6ecd0> + target = 'non_existing_beamline' + + def __init__(self, target=None): + if target is not None: + target = target.lower() + + instrument = target if target in INSTRUMENTS else None + beamline = target if target in BEAMLINES else None + + if beamline is None: + beamline = get_beamline(instrument) + + pvname = get_pvname_reprate(instrument, beamline) + + > beamline = beamline.capitalize() + E AttributeError: 'NoneType' object has no attribute 'capitalize' + + slic/utils/reprate.py:70: AttributeError ``` **_*๐Ÿ“Œ Teardown phase*_** @@ -1202,7 +2231,7 @@ **duration:** ```python - 0.0001502837985754013 + 0.00016262615099549294 ``` **outcome:** @@ -1220,7 +2249,21 @@ **duration:** ```python - 0.00014268700033426285 + 0.00011584162712097168 + ``` + + **outcome:** + + ```python + passed + ``` + + **_*๐Ÿ“Œ Call phase*_** + + **duration:** + + ```python + 0.00021672388538718224 ``` **outcome:** @@ -1229,16 +2272,54 @@ failed ``` + **crash:** + + ```python + path: /workspace/tligui_y/slic/slic/utils/reprate.py + lineno: 70 + message: AttributeError: 'NoneType' object has no attribute 'capitalize' + ``` + + **traceback:** + + ```python + - path: tests/test_utils_reprate.py + lineno: 114 + message: None + - path: slic/utils/reprate.py + lineno: 70 + message: AttributeError + ``` + **longrepr:** ```python - file /workspace/tligui_y/slic/tests/test_utils_reprate.py, line 112 - def test_retrieve_pvname_for_none_instrument_and_beamline(setup_ioc): - E fixture 'setup_ioc' not found - > available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, cov, doctest_namespace, extra, extras, include_metadata_in_junit_xml, json_metadata, metadata, monkeypatch, no_cover, pytestconfig, record_property, record_testsuite_property, record_xml_attribute, recwarn, start_ioc, time_machine, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory - > use 'pytest --fixtures [testpath]' for help on them. + def test_retrieve_pvname_for_none_instrument_and_beamline(): + # Test that if both instrument and beamline are None, the method works correctly.""" + > monitor = RepRateMonitor(target=None) - /workspace/tligui_y/slic/tests/test_utils_reprate.py:112 + tests/test_utils_reprate.py:114: + _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ + + self = <[AttributeError("'RepRateMonitor' object has no attribute 'name'") raised in repr()] RepRateMonitor object at 0x7ff7354be520> + target = None + + def __init__(self, target=None): + if target is not None: + target = target.lower() + + instrument = target if target in INSTRUMENTS else None + beamline = target if target in BEAMLINES else None + + if beamline is None: + beamline = get_beamline(instrument) + + pvname = get_pvname_reprate(instrument, beamline) + + > beamline = beamline.capitalize() + E AttributeError: 'NoneType' object has no attribute 'capitalize' + + slic/utils/reprate.py:70: AttributeError ``` **_*๐Ÿ“Œ Teardown phase*_** @@ -1246,7 +2327,7 @@ **duration:** ```python - 0.0001344471238553524 + 0.00016421126201748848 ``` **outcome:** diff --git a/markdown/coverage-summary.md b/markdown/coverage-summary.md index 820f749d0..b58e09fec 100644 --- a/markdown/coverage-summary.md +++ b/markdown/coverage-summary.md @@ -12630,3 +12630,228 @@ | slic/utils/utils.py | 17 | 8 | 53% | | slic/utils/xrange.py | 33 | 30 | 9% | | **TOTAL** | **9520** | **6990** | **27%** | +| Name | Stmts | Miss | Cover | +|----------------------------------------------- | -------: | -------: | ------: | +| slic/\_\_init\_\_.py | 20 | 2 | 90% | +| slic/core/\_\_init\_\_.py | 5 | 0 | 100% | +| slic/core/acquisition/\_\_init\_\_.py | 7 | 0 | 100% | +| slic/core/acquisition/acquisition.py | 56 | 42 | 25% | +| slic/core/acquisition/baseacquisition.py | 5 | 1 | 80% | +| slic/core/acquisition/broker/\_\_init\_\_.py | 2 | 0 | 100% | +| slic/core/acquisition/broker/brokerclient.py | 104 | 80 | 23% | +| slic/core/acquisition/broker/brokerconfig.py | 102 | 87 | 15% | +| slic/core/acquisition/broker/pedestal.py | 66 | 57 | 14% | +| slic/core/acquisition/broker/pids.py | 17 | 12 | 29% | +| slic/core/acquisition/broker/post\_retrieve.py | 120 | 120 | 0% | +| slic/core/acquisition/broker/requeststatus.py | 77 | 73 | 5% | +| slic/core/acquisition/broker/restapi.py | 147 | 107 | 27% | +| slic/core/acquisition/broker/tools.py | 52 | 18 | 65% | +| slic/core/acquisition/bsacquisition.py | 10 | 3 | 70% | +| slic/core/acquisition/bschannels.py | 30 | 19 | 37% | +| slic/core/acquisition/channels.py | 51 | 30 | 41% | +| slic/core/acquisition/dbacquisition.py | 19 | 12 | 37% | +| slic/core/acquisition/detcfg.py | 82 | 35 | 57% | +| slic/core/acquisition/diaacquisition.py | 111 | 111 | 0% | +| slic/core/acquisition/diaconfig.py | 36 | 36 | 0% | +| slic/core/acquisition/dummyacquisition.py | 12 | 12 | 0% | +| slic/core/acquisition/fakeacquisition.py | 76 | 53 | 30% | +| slic/core/acquisition/pedestals.py | 69 | 69 | 0% | +| slic/core/acquisition/pvacquisition.py | 60 | 47 | 22% | +| slic/core/acquisition/pvchannels.py | 13 | 7 | 46% | +| slic/core/acquisition/sfacquisition.py | 159 | 129 | 19% | +| slic/core/acquisition/sfpaths.py | 23 | 19 | 17% | +| slic/core/acquisition/spreadsheet.py | 45 | 45 | 0% | +| slic/core/adjustable/\_\_init\_\_.py | 11 | 0 | 100% | +| slic/core/adjustable/adjustable.py | 50 | 30 | 40% | +| slic/core/adjustable/baseadjustable.py | 28 | 18 | 36% | +| slic/core/adjustable/collection.py | 22 | 14 | 36% | +| slic/core/adjustable/combined.py | 15 | 8 | 47% | +| slic/core/adjustable/convenience.py | 35 | 20 | 43% | +| slic/core/adjustable/converted.py | 16 | 10 | 38% | +| slic/core/adjustable/dummyadjustable.py | 41 | 30 | 27% | +| slic/core/adjustable/error.py | 2 | 0 | 100% | +| slic/core/adjustable/genericadjustable.py | 32 | 24 | 25% | +| slic/core/adjustable/limited.py | 29 | 18 | 38% | +| slic/core/adjustable/linked.py | 22 | 15 | 32% | +| slic/core/adjustable/pvadjustable.py | 119 | 91 | 24% | +| slic/core/adjustable/pvchangemon.py | 77 | 56 | 27% | +| slic/core/adjustable/pvenumadjustable.py | 38 | 22 | 42% | +| slic/core/adjustable/scaler.py | 22 | 16 | 27% | +| slic/core/condition/\_\_init\_\_.py | 2 | 0 | 100% | +| slic/core/condition/basecondition.py | 8 | 2 | 75% | +| slic/core/condition/condition.py | 107 | 79 | 26% | +| slic/core/condition/pvcondition.py | 21 | 12 | 43% | +| slic/core/condition/valuecondition.py | 22 | 15 | 32% | +| slic/core/device/\_\_init\_\_.py | 2 | 0 | 100% | +| slic/core/device/auto.py | 12 | 12 | 0% | +| slic/core/device/basedevice.py | 2 | 0 | 100% | +| slic/core/device/device.py | 46 | 35 | 24% | +| slic/core/device/filtered.py | 23 | 23 | 0% | +| slic/core/device/simpledevice.py | 6 | 2 | 67% | +| slic/core/scanner/\_\_init\_\_.py | 1 | 0 | 100% | +| slic/core/scanner/runname.py | 36 | 23 | 36% | +| slic/core/scanner/scanbackend.py | 232 | 197 | 15% | +| slic/core/scanner/scaninfo.py | 45 | 35 | 22% | +| slic/core/scanner/scanner.py | 136 | 89 | 35% | +| slic/core/sensor/\_\_init\_\_.py | 8 | 0 | 100% | +| slic/core/sensor/basesensor.py | 12 | 3 | 75% | +| slic/core/sensor/bscombined.py | 9 | 5 | 44% | +| slic/core/sensor/bsmonitor.py | 102 | 73 | 28% | +| slic/core/sensor/bsnorm.py | 12 | 7 | 42% | +| slic/core/sensor/bssensor.py | 6 | 2 | 67% | +| slic/core/sensor/combined.py | 31 | 20 | 35% | +| slic/core/sensor/monitor.py | 62 | 51 | 18% | +| slic/core/sensor/norm.py | 9 | 5 | 44% | +| slic/core/sensor/pvsensor.py | 32 | 20 | 38% | +| slic/core/sensor/remoteplot.py | 15 | 10 | 33% | +| slic/core/sensor/sensor.py | 60 | 42 | 30% | +| slic/core/task/\_\_init\_\_.py | 4 | 0 | 100% | +| slic/core/task/basetask.py | 11 | 3 | 73% | +| slic/core/task/daqtask.py | 23 | 16 | 30% | +| slic/core/task/loop.py | 57 | 40 | 30% | +| slic/core/task/producer.py | 25 | 18 | 28% | +| slic/core/task/task.py | 62 | 46 | 26% | +| slic/devices/\_\_init\_\_.py | 7 | 0 | 100% | +| slic/devices/cameras/\_\_init\_\_.py | 4 | 0 | 100% | +| slic/devices/cameras/basler.py | 8 | 4 | 50% | +| slic/devices/cameras/camera\_bs.py | 13 | 8 | 38% | +| slic/devices/cameras/camera\_ca.py | 34 | 19 | 44% | +| slic/devices/cameras/camerabase.py | 17 | 12 | 29% | +| slic/devices/cameras/screenpanel.py | 31 | 21 | 32% | +| slic/devices/endstations/\_\_init\_\_.py | 3 | 0 | 100% | +| slic/devices/endstations/alvra\_flex.py | 10 | 5 | 50% | +| slic/devices/endstations/alvra\_huber.py | 8 | 4 | 50% | +| slic/devices/endstations/alvra\_prime.py | 48 | 34 | 29% | +| slic/devices/endstations/alvra\_xtg.py | 8 | 8 | 0% | +| slic/devices/endstations/bernina\_cameras.py | 33 | 33 | 0% | +| slic/devices/endstations/bernina\_platform.py | 46 | 46 | 0% | +| slic/devices/general/\_\_init\_\_.py | 4 | 0 | 100% | +| slic/devices/general/delay\_compensation.py | 13 | 13 | 0% | +| slic/devices/general/delay\_stage.py | 57 | 30 | 47% | +| slic/devices/general/detectors/\_\_init\_\_.py | 2 | 0 | 100% | +| slic/devices/general/detectors/buffer.py | 66 | 35 | 47% | +| slic/devices/general/detectors/digitizer.py | 13 | 7 | 46% | +| slic/devices/general/detectors/pvdatastream.py | 33 | 24 | 27% | +| slic/devices/general/detectors/timer.py | 15 | 9 | 40% | +| slic/devices/general/micosstage.py | 7 | 7 | 0% | +| slic/devices/general/motor.py | 128 | 88 | 31% | +| slic/devices/general/shutter.py | 22 | 12 | 45% | +| slic/devices/general/shutterctx.py | 18 | 7 | 61% | +| slic/devices/general/smaract.py | 169 | 125 | 26% | +| slic/devices/loptics/\_\_init\_\_.py | 2 | 0 | 100% | +| slic/devices/loptics/alvra\_explaser.py | 29 | 21 | 28% | +| slic/devices/loptics/bernina\_explaser.py | 28 | 28 | 0% | +| slic/devices/loptics/lasershutter.py | 22 | 14 | 36% | +| slic/devices/timing/\_\_init\_\_.py | 0 | 0 | 100% | +| slic/devices/timing/events/\_\_init\_\_.py | 3 | 3 | 0% | +| slic/devices/timing/events/codes.py | 5 | 5 | 0% | +| slic/devices/timing/events/ctaseq.py | 190 | 190 | 0% | +| slic/devices/timing/events/evr.py | 37 | 37 | 0% | +| slic/devices/timing/events/tma.py | 40 | 40 | 0% | +| slic/devices/timing/lasertiming.py | 253 | 184 | 27% | +| slic/devices/xdiagnostics/\_\_init\_\_.py | 2 | 0 | 100% | +| slic/devices/xdiagnostics/intensitymonitor.py | 124 | 92 | 26% | +| slic/devices/xdiagnostics/profilemonitor.py | 19 | 9 | 53% | +| slic/devices/xdiagnostics/timetools.py | 48 | 48 | 0% | +| slic/devices/xoptics/\_\_init\_\_.py | 7 | 0 | 100% | +| slic/devices/xoptics/aramis\_attenuator.py | 96 | 66 | 31% | +| slic/devices/xoptics/aramis\_reflaser.py | 23 | 15 | 35% | +| slic/devices/xoptics/dcm.py | 211 | 162 | 23% | +| slic/devices/xoptics/kb.py | 30 | 18 | 40% | +| slic/devices/xoptics/offsetmirrors.py | 9 | 5 | 44% | +| slic/devices/xoptics/pulsepicker.py | 56 | 34 | 39% | +| slic/devices/xoptics/slits/\_\_init\_\_.py | 5 | 0 | 100% | +| slic/devices/xoptics/slits/slitblades.py | 66 | 48 | 27% | +| slic/devices/xoptics/slits/slittwinunit.py | 12 | 6 | 50% | +| slic/devices/xoptics/slits/slitunit.py | 14 | 8 | 43% | +| slic/devices/xoptics/slits/slitunitcw.py | 7 | 3 | 57% | +| slic/devices/xoptics/slits/slitunitjj.py | 8 | 5 | 38% | +| slic/gui/\_\_init\_\_.py | 1 | 0 | 100% | +| slic/gui/daqframe.py | 75 | 54 | 28% | +| slic/gui/daqpanels/\_\_init\_\_.py | 6 | 0 | 100% | +| slic/gui/daqpanels/config.py | 98 | 80 | 18% | +| slic/gui/daqpanels/goto.py | 92 | 76 | 17% | +| slic/gui/daqpanels/run.py | 56 | 46 | 18% | +| slic/gui/daqpanels/scan2d.py | 77 | 66 | 14% | +| slic/gui/daqpanels/scan.py | 63 | 54 | 14% | +| slic/gui/daqpanels/sfx.py | 77 | 60 | 22% | +| slic/gui/daqpanels/special.py | 63 | 54 | 14% | +| slic/gui/daqpanels/static.py | 46 | 37 | 20% | +| slic/gui/daqpanels/tools.py | 140 | 114 | 19% | +| slic/gui/daqpanels/tweak.py | 149 | 127 | 15% | +| slic/gui/gui.py | 16 | 10 | 38% | +| slic/gui/icon.py | 8 | 4 | 50% | +| slic/gui/persist.py | 68 | 48 | 29% | +| slic/gui/widgets/\_\_init\_\_.py | 11 | 0 | 100% | +| slic/gui/widgets/alarm.py | 21 | 9 | 57% | +| slic/gui/widgets/alternative.py | 51 | 40 | 22% | +| slic/gui/widgets/boxes.py | 33 | 26 | 21% | +| slic/gui/widgets/checkbox.py | 8 | 4 | 50% | +| slic/gui/widgets/completers.py | 27 | 19 | 30% | +| slic/gui/widgets/dyncombo.py | 49 | 49 | 0% | +| slic/gui/widgets/entries.py | 253 | 195 | 23% | +| slic/gui/widgets/exc2warn.py | 15 | 13 | 13% | +| slic/gui/widgets/fname.py | 60 | 47 | 22% | +| slic/gui/widgets/jfcfg.py | 290 | 230 | 21% | +| slic/gui/widgets/jfmodcoords.py | 88 | 70 | 20% | +| slic/gui/widgets/labeled.py | 19 | 7 | 63% | +| slic/gui/widgets/lists.py | 96 | 73 | 24% | +| slic/gui/widgets/mods.py | 25 | 17 | 32% | +| slic/gui/widgets/nope.py | 26 | 19 | 27% | +| slic/gui/widgets/plotting.py | 68 | 47 | 31% | +| slic/gui/widgets/tools.py | 11 | 7 | 36% | +| slic/gui/widgets/twobuttons.py | 43 | 30 | 30% | +| slic/gui/wxdebug.py | 15 | 7 | 53% | +| slic/utils/\_\_init\_\_.py | 24 | 0 | 100% | +| slic/utils/argfwd.py | 53 | 14 | 74% | +| slic/utils/ask\_yes\_no.py | 27 | 20 | 26% | +| slic/utils/channels.py | 17 | 12 | 29% | +| slic/utils/config.py | 5 | 2 | 60% | +| slic/utils/cprint.py | 41 | 16 | 61% | +| slic/utils/dbusnotify.py | 40 | 25 | 38% | +| slic/utils/debug.py | 16 | 12 | 25% | +| slic/utils/dictext.py | 30 | 19 | 37% | +| slic/utils/dotdir.py | 10 | 1 | 90% | +| slic/utils/duo.py | 77 | 45 | 42% | +| slic/utils/elog.py | 31 | 21 | 32% | +| slic/utils/eval.py | 49 | 37 | 24% | +| slic/utils/exceptions.py | 22 | 14 | 36% | +| slic/utils/get\_adj.py | 17 | 11 | 35% | +| slic/utils/hastyepics.py | 37 | 25 | 32% | +| slic/utils/ioc/\_\_init\_\_.py | 1 | 1 | 0% | +| slic/utils/ioc/adjdrv.py | 31 | 31 | 0% | +| slic/utils/ioc/ioc.py | 63 | 63 | 0% | +| slic/utils/ipy.py | 22 | 15 | 32% | +| slic/utils/jsonext.py | 24 | 16 | 33% | +| slic/utils/lazypv.py | 12 | 12 | 0% | +| slic/utils/logcfg.py | 52 | 2 | 96% | +| slic/utils/logign.py | 22 | 14 | 36% | +| slic/utils/marker.py | 48 | 31 | 35% | +| slic/utils/metaclasses.py | 8 | 0 | 100% | +| slic/utils/namespace.py | 5 | 1 | 80% | +| slic/utils/npy.py | 71 | 56 | 21% | +| slic/utils/opmsg.py | 122 | 122 | 0% | +| slic/utils/path.py | 32 | 24 | 25% | +| slic/utils/picklio.py | 7 | 1 | 86% | +| slic/utils/printing.py | 77 | 61 | 21% | +| slic/utils/pv.py | 30 | 20 | 33% | +| slic/utils/pvpreload.py | 50 | 14 | 72% | +| slic/utils/pyepics.py | 64 | 39 | 39% | +| slic/utils/rangebar.py | 92 | 61 | 34% | +| slic/utils/readable.py | 12 | 9 | 25% | +| slic/utils/registry.py | 33 | 19 | 42% | +| slic/utils/reprate.py | 46 | 4 | 91% | +| slic/utils/richcfg.py | 21 | 11 | 48% | +| slic/utils/run\_later.py | 64 | 64 | 0% | +| slic/utils/screenshot.py | 30 | 21 | 30% | +| slic/utils/sendmail.py | 49 | 49 | 0% | +| slic/utils/sendsms.py | 5 | 5 | 0% | +| slic/utils/shortcut.py | 38 | 20 | 47% | +| slic/utils/snapshot.py | 6 | 3 | 50% | +| slic/utils/termtitle.py | 3 | 0 | 100% | +| slic/utils/tqdm\_mod.py | 28 | 18 | 36% | +| slic/utils/trinary.py | 4 | 2 | 50% | +| slic/utils/typecast.py | 19 | 19 | 0% | +| slic/utils/utils.py | 17 | 8 | 53% | +| slic/utils/xrange.py | 33 | 30 | 9% | +| **TOTAL** | **9520** | **6954** | **27%** | diff --git a/markdown/pytest-report.json b/markdown/pytest-report.json index 1609326bb..1b28bb8a6 100644 --- a/markdown/pytest-report.json +++ b/markdown/pytest-report.json @@ -1 +1 @@ -{"created": 1755009749.175708, "duration": 4.729110479354858, "exitcode": 1, "root": "/workspace/tligui_y/slic", "environment": {}, "summary": {"error": 25, "total": 25, "collected": 25}, "collectors": [{"nodeid": "", "outcome": "passed", "result": [{"nodeid": "tests/test_utils_reprate.py", "type": "Module"}]}, {"nodeid": "tests/test_utils_reprate.py", "outcome": "passed", "result": [{"nodeid": "tests/test_utils_reprate.py::test_get_beamline[alvra-aramis]", "type": "Function", "lineno": 6}, {"nodeid": "tests/test_utils_reprate.py::test_get_beamline[bernina-aramis]", "type": "Function", "lineno": 6}, {"nodeid": "tests/test_utils_reprate.py::test_get_beamline[cristallina-aramis]", "type": "Function", "lineno": 6}, {"nodeid": "tests/test_utils_reprate.py::test_get_beamline[diavolezza-athos]", "type": "Function", "lineno": 6}, {"nodeid": "tests/test_utils_reprate.py::test_get_beamline[maloja-athos]", "type": "Function", "lineno": 6}, {"nodeid": "tests/test_utils_reprate.py::test_get_beamline[furka-athos]", "type": "Function", "lineno": 6}, {"nodeid": "tests/test_utils_reprate.py::test_get_pvname_reprate_for_inferred_beamline", "type": "Function", "lineno": 19}, {"nodeid": "tests/test_utils_reprate.py::test_infer_beamline_from_ip[129.129.242-alvra]", "type": "Function", "lineno": 27}, {"nodeid": "tests/test_utils_reprate.py::test_infer_beamline_from_ip[129.129.243-bernina]", "type": "Function", "lineno": 27}, {"nodeid": "tests/test_utils_reprate.py::test_infer_beamline_from_ip[129.129.244-cristallina]", "type": "Function", "lineno": 27}, {"nodeid": "tests/test_utils_reprate.py::test_infer_beamline_from_ip[129.129.245-diavolezza]", "type": "Function", "lineno": 27}, {"nodeid": "tests/test_utils_reprate.py::test_infer_beamline_from_ip[129.129.246-maloja]", "type": "Function", "lineno": 27}, {"nodeid": "tests/test_utils_reprate.py::test_infer_beamline_from_ip[129.129.247-furka]", "type": "Function", "lineno": 27}, {"nodeid": "tests/test_utils_reprate.py::test_get_pvname_reprate_with_instrument_and_beamline[alvra-aramis-SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB]", "type": "Function", "lineno": 42}, {"nodeid": "tests/test_utils_reprate.py::test_get_pvname_reprate_with_instrument_and_beamline[bernina-aramis-SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB]", "type": "Function", "lineno": 42}, {"nodeid": "tests/test_utils_reprate.py::test_get_pvname_reprate_with_instrument_and_beamline[cristallina-aramis-SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB]", "type": "Function", "lineno": 42}, {"nodeid": "tests/test_utils_reprate.py::test_get_pvname_reprate_with_instrument_and_beamline[diavolezza-athos-SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB]", "type": "Function", "lineno": 42}, {"nodeid": "tests/test_utils_reprate.py::test_get_pvname_reprate_with_instrument_and_beamline[maloja-athos-SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB]", "type": "Function", "lineno": 42}, {"nodeid": "tests/test_utils_reprate.py::test_get_pvname_reprate_with_instrument_and_beamline[furka-athos-SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB]", "type": "Function", "lineno": 42}, {"nodeid": "tests/test_utils_reprate.py::test_invalid_instrument_or_beamline", "type": "Function", "lineno": 55}, {"nodeid": "tests/test_utils_reprate.py::test_monitor_value_update", "type": "Function", "lineno": 65}, {"nodeid": "tests/test_utils_reprate.py::test_repr_method_with_initial_values", "type": "Function", "lineno": 84}, {"nodeid": "tests/test_utils_reprate.py::test_invalid_target_handling[invalid_instrument]", "type": "Function", "lineno": 100}, {"nodeid": "tests/test_utils_reprate.py::test_invalid_target_handling[non_existing_beamline]", "type": "Function", "lineno": 100}, {"nodeid": "tests/test_utils_reprate.py::test_retrieve_pvname_for_none_instrument_and_beamline", "type": "Function", "lineno": 111}]}], "tests": [{"nodeid": "tests/test_utils_reprate.py::test_get_beamline[alvra-aramis]", "lineno": 6, "outcome": "error", "keywords": ["test_get_beamline[alvra-aramis]", "parametrize", "pytestmark", "alvra-aramis", "test_utils_reprate.py", "tests", "slic", ""], "setup": {"duration": 0.0007493402808904648, "outcome": "failed", "longrepr": "file /workspace/tligui_y/slic/tests/test_utils_reprate.py, line 7\n @pytest.mark.parametrize(\"instrument,expected_beamline\", [\n (\"alvra\", \"aramis\"),\n (\"bernina\", \"aramis\"),\n (\"cristallina\", \"aramis\"),\n (\"diavolezza\", \"athos\"),\n (\"maloja\", \"athos\"),\n (\"furka\", \"athos\")\n ])\n def test_get_beamline(instrument, expected_beamline, setup_ioc):\nE fixture 'setup_ioc' not found\n> available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, cov, doctest_namespace, extra, extras, include_metadata_in_junit_xml, json_metadata, metadata, monkeypatch, no_cover, pytestconfig, record_property, record_testsuite_property, record_xml_attribute, recwarn, start_ioc, time_machine, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory\n> use 'pytest --fixtures [testpath]' for help on them.\n\n/workspace/tligui_y/slic/tests/test_utils_reprate.py:7"}, "teardown": {"duration": 0.00029032863676548004, "outcome": "passed"}}, {"nodeid": "tests/test_utils_reprate.py::test_get_beamline[bernina-aramis]", "lineno": 6, "outcome": "error", "keywords": ["test_get_beamline[bernina-aramis]", "parametrize", "pytestmark", "bernina-aramis", "test_utils_reprate.py", "tests", "slic", ""], "setup": {"duration": 0.0002658627927303314, "outcome": "failed", "longrepr": "file /workspace/tligui_y/slic/tests/test_utils_reprate.py, line 7\n @pytest.mark.parametrize(\"instrument,expected_beamline\", [\n (\"alvra\", \"aramis\"),\n (\"bernina\", \"aramis\"),\n (\"cristallina\", \"aramis\"),\n (\"diavolezza\", \"athos\"),\n (\"maloja\", \"athos\"),\n (\"furka\", \"athos\")\n ])\n def test_get_beamline(instrument, expected_beamline, setup_ioc):\nE fixture 'setup_ioc' not found\n> available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, cov, doctest_namespace, extra, extras, include_metadata_in_junit_xml, json_metadata, metadata, monkeypatch, no_cover, pytestconfig, record_property, record_testsuite_property, record_xml_attribute, recwarn, start_ioc, time_machine, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory\n> use 'pytest --fixtures [testpath]' for help on them.\n\n/workspace/tligui_y/slic/tests/test_utils_reprate.py:7"}, "teardown": {"duration": 0.00016033975407481194, "outcome": "passed"}}, {"nodeid": "tests/test_utils_reprate.py::test_get_beamline[cristallina-aramis]", "lineno": 6, "outcome": "error", "keywords": ["test_get_beamline[cristallina-aramis]", "parametrize", "pytestmark", "cristallina-aramis", "test_utils_reprate.py", "tests", "slic", ""], "setup": {"duration": 0.00024340907111763954, "outcome": "failed", "longrepr": "file /workspace/tligui_y/slic/tests/test_utils_reprate.py, line 7\n @pytest.mark.parametrize(\"instrument,expected_beamline\", [\n (\"alvra\", \"aramis\"),\n (\"bernina\", \"aramis\"),\n (\"cristallina\", \"aramis\"),\n (\"diavolezza\", \"athos\"),\n (\"maloja\", \"athos\"),\n (\"furka\", \"athos\")\n ])\n def test_get_beamline(instrument, expected_beamline, setup_ioc):\nE fixture 'setup_ioc' not found\n> available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, cov, doctest_namespace, extra, extras, include_metadata_in_junit_xml, json_metadata, metadata, monkeypatch, no_cover, pytestconfig, record_property, record_testsuite_property, record_xml_attribute, recwarn, start_ioc, time_machine, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory\n> use 'pytest --fixtures [testpath]' for help on them.\n\n/workspace/tligui_y/slic/tests/test_utils_reprate.py:7"}, "teardown": {"duration": 0.00016400497406721115, "outcome": "passed"}}, {"nodeid": "tests/test_utils_reprate.py::test_get_beamline[diavolezza-athos]", "lineno": 6, "outcome": "error", "keywords": ["test_get_beamline[diavolezza-athos]", "parametrize", "pytestmark", "diavolezza-athos", "test_utils_reprate.py", "tests", "slic", ""], "setup": {"duration": 0.00025037722662091255, "outcome": "failed", "longrepr": "file /workspace/tligui_y/slic/tests/test_utils_reprate.py, line 7\n @pytest.mark.parametrize(\"instrument,expected_beamline\", [\n (\"alvra\", \"aramis\"),\n (\"bernina\", \"aramis\"),\n (\"cristallina\", \"aramis\"),\n (\"diavolezza\", \"athos\"),\n (\"maloja\", \"athos\"),\n (\"furka\", \"athos\")\n ])\n def test_get_beamline(instrument, expected_beamline, setup_ioc):\nE fixture 'setup_ioc' not found\n> available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, cov, doctest_namespace, extra, extras, include_metadata_in_junit_xml, json_metadata, metadata, monkeypatch, no_cover, pytestconfig, record_property, record_testsuite_property, record_xml_attribute, recwarn, start_ioc, time_machine, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory\n> use 'pytest --fixtures [testpath]' for help on them.\n\n/workspace/tligui_y/slic/tests/test_utils_reprate.py:7"}, "teardown": {"duration": 0.00014716805890202522, "outcome": "passed"}}, {"nodeid": "tests/test_utils_reprate.py::test_get_beamline[maloja-athos]", "lineno": 6, "outcome": "error", "keywords": ["test_get_beamline[maloja-athos]", "parametrize", "pytestmark", "maloja-athos", "test_utils_reprate.py", "tests", "slic", ""], "setup": {"duration": 0.0002556033432483673, "outcome": "failed", "longrepr": "file /workspace/tligui_y/slic/tests/test_utils_reprate.py, line 7\n @pytest.mark.parametrize(\"instrument,expected_beamline\", [\n (\"alvra\", \"aramis\"),\n (\"bernina\", \"aramis\"),\n (\"cristallina\", \"aramis\"),\n (\"diavolezza\", \"athos\"),\n (\"maloja\", \"athos\"),\n (\"furka\", \"athos\")\n ])\n def test_get_beamline(instrument, expected_beamline, setup_ioc):\nE fixture 'setup_ioc' not found\n> available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, cov, doctest_namespace, extra, extras, include_metadata_in_junit_xml, json_metadata, metadata, monkeypatch, no_cover, pytestconfig, record_property, record_testsuite_property, record_xml_attribute, recwarn, start_ioc, time_machine, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory\n> use 'pytest --fixtures [testpath]' for help on them.\n\n/workspace/tligui_y/slic/tests/test_utils_reprate.py:7"}, "teardown": {"duration": 0.00016998033970594406, "outcome": "passed"}}, {"nodeid": "tests/test_utils_reprate.py::test_get_beamline[furka-athos]", "lineno": 6, "outcome": "error", "keywords": ["test_get_beamline[furka-athos]", "parametrize", "pytestmark", "furka-athos", "test_utils_reprate.py", "tests", "slic", ""], "setup": {"duration": 0.00023693079128861427, "outcome": "failed", "longrepr": "file /workspace/tligui_y/slic/tests/test_utils_reprate.py, line 7\n @pytest.mark.parametrize(\"instrument,expected_beamline\", [\n (\"alvra\", \"aramis\"),\n (\"bernina\", \"aramis\"),\n (\"cristallina\", \"aramis\"),\n (\"diavolezza\", \"athos\"),\n (\"maloja\", \"athos\"),\n (\"furka\", \"athos\")\n ])\n def test_get_beamline(instrument, expected_beamline, setup_ioc):\nE fixture 'setup_ioc' not found\n> available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, cov, doctest_namespace, extra, extras, include_metadata_in_junit_xml, json_metadata, metadata, monkeypatch, no_cover, pytestconfig, record_property, record_testsuite_property, record_xml_attribute, recwarn, start_ioc, time_machine, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory\n> use 'pytest --fixtures [testpath]' for help on them.\n\n/workspace/tligui_y/slic/tests/test_utils_reprate.py:7"}, "teardown": {"duration": 0.000170133076608181, "outcome": "passed"}}, {"nodeid": "tests/test_utils_reprate.py::test_get_pvname_reprate_for_inferred_beamline", "lineno": 19, "outcome": "error", "keywords": ["test_get_pvname_reprate_for_inferred_beamline", "test_utils_reprate.py", "tests", "slic", ""], "setup": {"duration": 0.00014337105676531792, "outcome": "failed", "longrepr": "file /workspace/tligui_y/slic/tests/test_utils_reprate.py, line 20\n def test_get_pvname_reprate_for_inferred_beamline(setup_ioc):\nE fixture 'setup_ioc' not found\n> available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, cov, doctest_namespace, extra, extras, include_metadata_in_junit_xml, json_metadata, metadata, monkeypatch, no_cover, pytestconfig, record_property, record_testsuite_property, record_xml_attribute, recwarn, start_ioc, time_machine, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory\n> use 'pytest --fixtures [testpath]' for help on them.\n\n/workspace/tligui_y/slic/tests/test_utils_reprate.py:20"}, "teardown": {"duration": 0.00012584170326590538, "outcome": "passed"}}, {"nodeid": "tests/test_utils_reprate.py::test_infer_beamline_from_ip[129.129.242-alvra]", "lineno": 27, "outcome": "error", "keywords": ["test_infer_beamline_from_ip[129.129.242-alvra]", "parametrize", "pytestmark", "129.129.242-alvra", "test_utils_reprate.py", "tests", "slic", ""], "setup": {"duration": 0.00025480473414063454, "outcome": "failed", "longrepr": "file /workspace/tligui_y/slic/tests/test_utils_reprate.py, line 28\n @pytest.mark.parametrize(\"ip,expected_instrument\", [\n (\"129.129.242\", \"alvra\"),\n (\"129.129.243\", \"bernina\"),\n (\"129.129.244\", \"cristallina\"),\n (\"129.129.245\", \"diavolezza\"),\n (\"129.129.246\", \"maloja\"),\n (\"129.129.247\", \"furka\")\n ])\n def test_infer_beamline_from_ip(ip, expected_instrument, setup_ioc):\nE fixture 'setup_ioc' not found\n> available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, cov, doctest_namespace, extra, extras, include_metadata_in_junit_xml, json_metadata, metadata, monkeypatch, no_cover, pytestconfig, record_property, record_testsuite_property, record_xml_attribute, recwarn, start_ioc, time_machine, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory\n> use 'pytest --fixtures [testpath]' for help on them.\n\n/workspace/tligui_y/slic/tests/test_utils_reprate.py:28"}, "teardown": {"duration": 0.00018341606482863426, "outcome": "passed"}}, {"nodeid": "tests/test_utils_reprate.py::test_infer_beamline_from_ip[129.129.243-bernina]", "lineno": 27, "outcome": "error", "keywords": ["test_infer_beamline_from_ip[129.129.243-bernina]", "parametrize", "pytestmark", "129.129.243-bernina", "test_utils_reprate.py", "tests", "slic", ""], "setup": {"duration": 0.000274833757430315, "outcome": "failed", "longrepr": "file /workspace/tligui_y/slic/tests/test_utils_reprate.py, line 28\n @pytest.mark.parametrize(\"ip,expected_instrument\", [\n (\"129.129.242\", \"alvra\"),\n (\"129.129.243\", \"bernina\"),\n (\"129.129.244\", \"cristallina\"),\n (\"129.129.245\", \"diavolezza\"),\n (\"129.129.246\", \"maloja\"),\n (\"129.129.247\", \"furka\")\n ])\n def test_infer_beamline_from_ip(ip, expected_instrument, setup_ioc):\nE fixture 'setup_ioc' not found\n> available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, cov, doctest_namespace, extra, extras, include_metadata_in_junit_xml, json_metadata, metadata, monkeypatch, no_cover, pytestconfig, record_property, record_testsuite_property, record_xml_attribute, recwarn, start_ioc, time_machine, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory\n> use 'pytest --fixtures [testpath]' for help on them.\n\n/workspace/tligui_y/slic/tests/test_utils_reprate.py:28"}, "teardown": {"duration": 0.00017648888751864433, "outcome": "passed"}}, {"nodeid": "tests/test_utils_reprate.py::test_infer_beamline_from_ip[129.129.244-cristallina]", "lineno": 27, "outcome": "error", "keywords": ["test_infer_beamline_from_ip[129.129.244-cristallina]", "parametrize", "pytestmark", "129.129.244-cristallina", "test_utils_reprate.py", "tests", "slic", ""], "setup": {"duration": 0.00025285501033067703, "outcome": "failed", "longrepr": "file /workspace/tligui_y/slic/tests/test_utils_reprate.py, line 28\n @pytest.mark.parametrize(\"ip,expected_instrument\", [\n (\"129.129.242\", \"alvra\"),\n (\"129.129.243\", \"bernina\"),\n (\"129.129.244\", \"cristallina\"),\n (\"129.129.245\", \"diavolezza\"),\n (\"129.129.246\", \"maloja\"),\n (\"129.129.247\", \"furka\")\n ])\n def test_infer_beamline_from_ip(ip, expected_instrument, setup_ioc):\nE fixture 'setup_ioc' not found\n> available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, cov, doctest_namespace, extra, extras, include_metadata_in_junit_xml, json_metadata, metadata, monkeypatch, no_cover, pytestconfig, record_property, record_testsuite_property, record_xml_attribute, recwarn, start_ioc, time_machine, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory\n> use 'pytest --fixtures [testpath]' for help on them.\n\n/workspace/tligui_y/slic/tests/test_utils_reprate.py:28"}, "teardown": {"duration": 0.00016480591148138046, "outcome": "passed"}}, {"nodeid": "tests/test_utils_reprate.py::test_infer_beamline_from_ip[129.129.245-diavolezza]", "lineno": 27, "outcome": "error", "keywords": ["test_infer_beamline_from_ip[129.129.245-diavolezza]", "parametrize", "pytestmark", "129.129.245-diavolezza", "test_utils_reprate.py", "tests", "slic", ""], "setup": {"duration": 0.0002520526759326458, "outcome": "failed", "longrepr": "file /workspace/tligui_y/slic/tests/test_utils_reprate.py, line 28\n @pytest.mark.parametrize(\"ip,expected_instrument\", [\n (\"129.129.242\", \"alvra\"),\n (\"129.129.243\", \"bernina\"),\n (\"129.129.244\", \"cristallina\"),\n (\"129.129.245\", \"diavolezza\"),\n (\"129.129.246\", \"maloja\"),\n (\"129.129.247\", \"furka\")\n ])\n def test_infer_beamline_from_ip(ip, expected_instrument, setup_ioc):\nE fixture 'setup_ioc' not found\n> available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, cov, doctest_namespace, extra, extras, include_metadata_in_junit_xml, json_metadata, metadata, monkeypatch, no_cover, pytestconfig, record_property, record_testsuite_property, record_xml_attribute, recwarn, start_ioc, time_machine, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory\n> use 'pytest --fixtures [testpath]' for help on them.\n\n/workspace/tligui_y/slic/tests/test_utils_reprate.py:28"}, "teardown": {"duration": 0.00016375677660107613, "outcome": "passed"}}, {"nodeid": "tests/test_utils_reprate.py::test_infer_beamline_from_ip[129.129.246-maloja]", "lineno": 27, "outcome": "error", "keywords": ["test_infer_beamline_from_ip[129.129.246-maloja]", "parametrize", "pytestmark", "129.129.246-maloja", "test_utils_reprate.py", "tests", "slic", ""], "setup": {"duration": 0.0002599521540105343, "outcome": "failed", "longrepr": "file /workspace/tligui_y/slic/tests/test_utils_reprate.py, line 28\n @pytest.mark.parametrize(\"ip,expected_instrument\", [\n (\"129.129.242\", \"alvra\"),\n (\"129.129.243\", \"bernina\"),\n (\"129.129.244\", \"cristallina\"),\n (\"129.129.245\", \"diavolezza\"),\n (\"129.129.246\", \"maloja\"),\n (\"129.129.247\", \"furka\")\n ])\n def test_infer_beamline_from_ip(ip, expected_instrument, setup_ioc):\nE fixture 'setup_ioc' not found\n> available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, cov, doctest_namespace, extra, extras, include_metadata_in_junit_xml, json_metadata, metadata, monkeypatch, no_cover, pytestconfig, record_property, record_testsuite_property, record_xml_attribute, recwarn, start_ioc, time_machine, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory\n> use 'pytest --fixtures [testpath]' for help on them.\n\n/workspace/tligui_y/slic/tests/test_utils_reprate.py:28"}, "teardown": {"duration": 0.00016868812963366508, "outcome": "passed"}}, {"nodeid": "tests/test_utils_reprate.py::test_infer_beamline_from_ip[129.129.247-furka]", "lineno": 27, "outcome": "error", "keywords": ["test_infer_beamline_from_ip[129.129.247-furka]", "parametrize", "pytestmark", "129.129.247-furka", "test_utils_reprate.py", "tests", "slic", ""], "setup": {"duration": 0.00025742920115590096, "outcome": "failed", "longrepr": "file /workspace/tligui_y/slic/tests/test_utils_reprate.py, line 28\n @pytest.mark.parametrize(\"ip,expected_instrument\", [\n (\"129.129.242\", \"alvra\"),\n (\"129.129.243\", \"bernina\"),\n (\"129.129.244\", \"cristallina\"),\n (\"129.129.245\", \"diavolezza\"),\n (\"129.129.246\", \"maloja\"),\n (\"129.129.247\", \"furka\")\n ])\n def test_infer_beamline_from_ip(ip, expected_instrument, setup_ioc):\nE fixture 'setup_ioc' not found\n> available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, cov, doctest_namespace, extra, extras, include_metadata_in_junit_xml, json_metadata, metadata, monkeypatch, no_cover, pytestconfig, record_property, record_testsuite_property, record_xml_attribute, recwarn, start_ioc, time_machine, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory\n> use 'pytest --fixtures [testpath]' for help on them.\n\n/workspace/tligui_y/slic/tests/test_utils_reprate.py:28"}, "teardown": {"duration": 0.0001705843023955822, "outcome": "passed"}}, {"nodeid": "tests/test_utils_reprate.py::test_get_pvname_reprate_with_instrument_and_beamline[alvra-aramis-SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB]", "lineno": 42, "outcome": "error", "keywords": ["test_get_pvname_reprate_with_instrument_and_beamline[alvra-aramis-SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB]", "parametrize", "pytestmark", "alvra-aramis-SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB", "test_utils_reprate.py", "tests", "slic", ""], "setup": {"duration": 0.0002960287965834141, "outcome": "failed", "longrepr": "file /workspace/tligui_y/slic/tests/test_utils_reprate.py, line 43\n @pytest.mark.parametrize(\"instrument,beamline,pvname\", [\n (\"alvra\", \"aramis\", \"SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB\"),\n (\"bernina\", \"aramis\", \"SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB\"),\n (\"cristallina\", \"aramis\", \"SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB\"),\n (\"diavolezza\", \"athos\", \"SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB\"),\n (\"maloja\", \"athos\", \"SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB\"),\n (\"furka\", \"athos\", \"SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB\")\n ])\n def test_get_pvname_reprate_with_instrument_and_beamline(instrument, beamline, pvname, setup_ioc):\nE fixture 'setup_ioc' not found\n> available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, cov, doctest_namespace, extra, extras, include_metadata_in_junit_xml, json_metadata, metadata, monkeypatch, no_cover, pytestconfig, record_property, record_testsuite_property, record_xml_attribute, recwarn, start_ioc, time_machine, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory\n> use 'pytest --fixtures [testpath]' for help on them.\n\n/workspace/tligui_y/slic/tests/test_utils_reprate.py:43"}, "teardown": {"duration": 0.00017248699441552162, "outcome": "passed"}}, {"nodeid": "tests/test_utils_reprate.py::test_get_pvname_reprate_with_instrument_and_beamline[bernina-aramis-SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB]", "lineno": 42, "outcome": "error", "keywords": ["test_get_pvname_reprate_with_instrument_and_beamline[bernina-aramis-SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB]", "parametrize", "pytestmark", "bernina-aramis-SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB", "test_utils_reprate.py", "tests", "slic", ""], "setup": {"duration": 0.00029520271345973015, "outcome": "failed", "longrepr": "file /workspace/tligui_y/slic/tests/test_utils_reprate.py, line 43\n @pytest.mark.parametrize(\"instrument,beamline,pvname\", [\n (\"alvra\", \"aramis\", \"SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB\"),\n (\"bernina\", \"aramis\", \"SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB\"),\n (\"cristallina\", \"aramis\", \"SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB\"),\n (\"diavolezza\", \"athos\", \"SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB\"),\n (\"maloja\", \"athos\", \"SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB\"),\n (\"furka\", \"athos\", \"SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB\")\n ])\n def test_get_pvname_reprate_with_instrument_and_beamline(instrument, beamline, pvname, setup_ioc):\nE fixture 'setup_ioc' not found\n> available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, cov, doctest_namespace, extra, extras, include_metadata_in_junit_xml, json_metadata, metadata, monkeypatch, no_cover, pytestconfig, record_property, record_testsuite_property, record_xml_attribute, recwarn, start_ioc, time_machine, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory\n> use 'pytest --fixtures [testpath]' for help on them.\n\n/workspace/tligui_y/slic/tests/test_utils_reprate.py:43"}, "teardown": {"duration": 0.0001803138293325901, "outcome": "passed"}}, {"nodeid": "tests/test_utils_reprate.py::test_get_pvname_reprate_with_instrument_and_beamline[cristallina-aramis-SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB]", "lineno": 42, "outcome": "error", "keywords": ["test_get_pvname_reprate_with_instrument_and_beamline[cristallina-aramis-SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB]", "parametrize", "pytestmark", "cristallina-aramis-SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB", "test_utils_reprate.py", "tests", "slic", ""], "setup": {"duration": 0.00029843300580978394, "outcome": "failed", "longrepr": "file /workspace/tligui_y/slic/tests/test_utils_reprate.py, line 43\n @pytest.mark.parametrize(\"instrument,beamline,pvname\", [\n (\"alvra\", \"aramis\", \"SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB\"),\n (\"bernina\", \"aramis\", \"SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB\"),\n (\"cristallina\", \"aramis\", \"SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB\"),\n (\"diavolezza\", \"athos\", \"SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB\"),\n (\"maloja\", \"athos\", \"SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB\"),\n (\"furka\", \"athos\", \"SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB\")\n ])\n def test_get_pvname_reprate_with_instrument_and_beamline(instrument, beamline, pvname, setup_ioc):\nE fixture 'setup_ioc' not found\n> available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, cov, doctest_namespace, extra, extras, include_metadata_in_junit_xml, json_metadata, metadata, monkeypatch, no_cover, pytestconfig, record_property, record_testsuite_property, record_xml_attribute, recwarn, start_ioc, time_machine, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory\n> use 'pytest --fixtures [testpath]' for help on them.\n\n/workspace/tligui_y/slic/tests/test_utils_reprate.py:43"}, "teardown": {"duration": 0.00017090002074837685, "outcome": "passed"}}, {"nodeid": "tests/test_utils_reprate.py::test_get_pvname_reprate_with_instrument_and_beamline[diavolezza-athos-SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB]", "lineno": 42, "outcome": "error", "keywords": ["test_get_pvname_reprate_with_instrument_and_beamline[diavolezza-athos-SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB]", "parametrize", "pytestmark", "diavolezza-athos-SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB", "test_utils_reprate.py", "tests", "slic", ""], "setup": {"duration": 0.00027886126190423965, "outcome": "failed", "longrepr": "file /workspace/tligui_y/slic/tests/test_utils_reprate.py, line 43\n @pytest.mark.parametrize(\"instrument,beamline,pvname\", [\n (\"alvra\", \"aramis\", \"SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB\"),\n (\"bernina\", \"aramis\", \"SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB\"),\n (\"cristallina\", \"aramis\", \"SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB\"),\n (\"diavolezza\", \"athos\", \"SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB\"),\n (\"maloja\", \"athos\", \"SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB\"),\n (\"furka\", \"athos\", \"SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB\")\n ])\n def test_get_pvname_reprate_with_instrument_and_beamline(instrument, beamline, pvname, setup_ioc):\nE fixture 'setup_ioc' not found\n> available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, cov, doctest_namespace, extra, extras, include_metadata_in_junit_xml, json_metadata, metadata, monkeypatch, no_cover, pytestconfig, record_property, record_testsuite_property, record_xml_attribute, recwarn, start_ioc, time_machine, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory\n> use 'pytest --fixtures [testpath]' for help on them.\n\n/workspace/tligui_y/slic/tests/test_utils_reprate.py:43"}, "teardown": {"duration": 0.00016166409477591515, "outcome": "passed"}}, {"nodeid": "tests/test_utils_reprate.py::test_get_pvname_reprate_with_instrument_and_beamline[maloja-athos-SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB]", "lineno": 42, "outcome": "error", "keywords": ["test_get_pvname_reprate_with_instrument_and_beamline[maloja-athos-SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB]", "parametrize", "pytestmark", "maloja-athos-SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB", "test_utils_reprate.py", "tests", "slic", ""], "setup": {"duration": 0.0002797609195113182, "outcome": "failed", "longrepr": "file /workspace/tligui_y/slic/tests/test_utils_reprate.py, line 43\n @pytest.mark.parametrize(\"instrument,beamline,pvname\", [\n (\"alvra\", \"aramis\", \"SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB\"),\n (\"bernina\", \"aramis\", \"SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB\"),\n (\"cristallina\", \"aramis\", \"SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB\"),\n (\"diavolezza\", \"athos\", \"SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB\"),\n (\"maloja\", \"athos\", \"SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB\"),\n (\"furka\", \"athos\", \"SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB\")\n ])\n def test_get_pvname_reprate_with_instrument_and_beamline(instrument, beamline, pvname, setup_ioc):\nE fixture 'setup_ioc' not found\n> available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, cov, doctest_namespace, extra, extras, include_metadata_in_junit_xml, json_metadata, metadata, monkeypatch, no_cover, pytestconfig, record_property, record_testsuite_property, record_xml_attribute, recwarn, start_ioc, time_machine, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory\n> use 'pytest --fixtures [testpath]' for help on them.\n\n/workspace/tligui_y/slic/tests/test_utils_reprate.py:43"}, "teardown": {"duration": 0.0001736348494887352, "outcome": "passed"}}, {"nodeid": "tests/test_utils_reprate.py::test_get_pvname_reprate_with_instrument_and_beamline[furka-athos-SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB]", "lineno": 42, "outcome": "error", "keywords": ["test_get_pvname_reprate_with_instrument_and_beamline[furka-athos-SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB]", "parametrize", "pytestmark", "furka-athos-SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB", "test_utils_reprate.py", "tests", "slic", ""], "setup": {"duration": 0.0002861940301954746, "outcome": "failed", "longrepr": "file /workspace/tligui_y/slic/tests/test_utils_reprate.py, line 43\n @pytest.mark.parametrize(\"instrument,beamline,pvname\", [\n (\"alvra\", \"aramis\", \"SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB\"),\n (\"bernina\", \"aramis\", \"SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB\"),\n (\"cristallina\", \"aramis\", \"SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB\"),\n (\"diavolezza\", \"athos\", \"SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB\"),\n (\"maloja\", \"athos\", \"SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB\"),\n (\"furka\", \"athos\", \"SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB\")\n ])\n def test_get_pvname_reprate_with_instrument_and_beamline(instrument, beamline, pvname, setup_ioc):\nE fixture 'setup_ioc' not found\n> available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, cov, doctest_namespace, extra, extras, include_metadata_in_junit_xml, json_metadata, metadata, monkeypatch, no_cover, pytestconfig, record_property, record_testsuite_property, record_xml_attribute, recwarn, start_ioc, time_machine, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory\n> use 'pytest --fixtures [testpath]' for help on them.\n\n/workspace/tligui_y/slic/tests/test_utils_reprate.py:43"}, "teardown": {"duration": 0.00017443206161260605, "outcome": "passed"}}, {"nodeid": "tests/test_utils_reprate.py::test_invalid_instrument_or_beamline", "lineno": 55, "outcome": "error", "keywords": ["test_invalid_instrument_or_beamline", "test_utils_reprate.py", "tests", "slic", ""], "setup": {"duration": 0.00014163414016366005, "outcome": "failed", "longrepr": "file /workspace/tligui_y/slic/tests/test_utils_reprate.py, line 56\n def test_invalid_instrument_or_beamline(setup_ioc):\nE fixture 'setup_ioc' not found\n> available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, cov, doctest_namespace, extra, extras, include_metadata_in_junit_xml, json_metadata, metadata, monkeypatch, no_cover, pytestconfig, record_property, record_testsuite_property, record_xml_attribute, recwarn, start_ioc, time_machine, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory\n> use 'pytest --fixtures [testpath]' for help on them.\n\n/workspace/tligui_y/slic/tests/test_utils_reprate.py:56"}, "teardown": {"duration": 0.00012134900316596031, "outcome": "passed"}}, {"nodeid": "tests/test_utils_reprate.py::test_monitor_value_update", "lineno": 65, "outcome": "error", "keywords": ["test_monitor_value_update", "test_utils_reprate.py", "tests", "slic", ""], "setup": {"duration": 0.0001392001286149025, "outcome": "failed", "longrepr": "file /workspace/tligui_y/slic/tests/test_utils_reprate.py, line 66\n def test_monitor_value_update(setup_ioc):\nE fixture 'setup_ioc' not found\n> available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, cov, doctest_namespace, extra, extras, include_metadata_in_junit_xml, json_metadata, metadata, monkeypatch, no_cover, pytestconfig, record_property, record_testsuite_property, record_xml_attribute, recwarn, start_ioc, time_machine, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory\n> use 'pytest --fixtures [testpath]' for help on them.\n\n/workspace/tligui_y/slic/tests/test_utils_reprate.py:66"}, "teardown": {"duration": 0.00012780260294675827, "outcome": "passed"}}, {"nodeid": "tests/test_utils_reprate.py::test_repr_method_with_initial_values", "lineno": 84, "outcome": "error", "keywords": ["test_repr_method_with_initial_values", "test_utils_reprate.py", "tests", "slic", ""], "setup": {"duration": 0.00013825297355651855, "outcome": "failed", "longrepr": "file /workspace/tligui_y/slic/tests/test_utils_reprate.py, line 85\n def test_repr_method_with_initial_values(setup_ioc):\nE fixture 'setup_ioc' not found\n> available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, cov, doctest_namespace, extra, extras, include_metadata_in_junit_xml, json_metadata, metadata, monkeypatch, no_cover, pytestconfig, record_property, record_testsuite_property, record_xml_attribute, recwarn, start_ioc, time_machine, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory\n> use 'pytest --fixtures [testpath]' for help on them.\n\n/workspace/tligui_y/slic/tests/test_utils_reprate.py:85"}, "teardown": {"duration": 0.00011812523007392883, "outcome": "passed"}}, {"nodeid": "tests/test_utils_reprate.py::test_invalid_target_handling[invalid_instrument]", "lineno": 100, "outcome": "error", "keywords": ["test_invalid_target_handling[invalid_instrument]", "parametrize", "pytestmark", "invalid_instrument", "test_utils_reprate.py", "tests", "slic", ""], "setup": {"duration": 0.00021359603852033615, "outcome": "failed", "longrepr": "file /workspace/tligui_y/slic/tests/test_utils_reprate.py, line 101\n @pytest.mark.parametrize(\"invalid_target\", [\n \"invalid_instrument\", # Non-existent instrument\n \"non_existing_beamline\" # Non-existent beamline\n ])\n def test_invalid_target_handling(invalid_target, setup_ioc):\nE fixture 'setup_ioc' not found\n> available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, cov, doctest_namespace, extra, extras, include_metadata_in_junit_xml, json_metadata, metadata, monkeypatch, no_cover, pytestconfig, record_property, record_testsuite_property, record_xml_attribute, recwarn, start_ioc, time_machine, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory\n> use 'pytest --fixtures [testpath]' for help on them.\n\n/workspace/tligui_y/slic/tests/test_utils_reprate.py:101"}, "teardown": {"duration": 0.00014065392315387726, "outcome": "passed"}}, {"nodeid": "tests/test_utils_reprate.py::test_invalid_target_handling[non_existing_beamline]", "lineno": 100, "outcome": "error", "keywords": ["test_invalid_target_handling[non_existing_beamline]", "parametrize", "pytestmark", "non_existing_beamline", "test_utils_reprate.py", "tests", "slic", ""], "setup": {"duration": 0.00019537098705768585, "outcome": "failed", "longrepr": "file /workspace/tligui_y/slic/tests/test_utils_reprate.py, line 101\n @pytest.mark.parametrize(\"invalid_target\", [\n \"invalid_instrument\", # Non-existent instrument\n \"non_existing_beamline\" # Non-existent beamline\n ])\n def test_invalid_target_handling(invalid_target, setup_ioc):\nE fixture 'setup_ioc' not found\n> available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, cov, doctest_namespace, extra, extras, include_metadata_in_junit_xml, json_metadata, metadata, monkeypatch, no_cover, pytestconfig, record_property, record_testsuite_property, record_xml_attribute, recwarn, start_ioc, time_machine, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory\n> use 'pytest --fixtures [testpath]' for help on them.\n\n/workspace/tligui_y/slic/tests/test_utils_reprate.py:101"}, "teardown": {"duration": 0.0001502837985754013, "outcome": "passed"}}, {"nodeid": "tests/test_utils_reprate.py::test_retrieve_pvname_for_none_instrument_and_beamline", "lineno": 111, "outcome": "error", "keywords": ["test_retrieve_pvname_for_none_instrument_and_beamline", "test_utils_reprate.py", "tests", "slic", ""], "setup": {"duration": 0.00014268700033426285, "outcome": "failed", "longrepr": "file /workspace/tligui_y/slic/tests/test_utils_reprate.py, line 112\n def test_retrieve_pvname_for_none_instrument_and_beamline(setup_ioc):\nE fixture 'setup_ioc' not found\n> available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, cov, doctest_namespace, extra, extras, include_metadata_in_junit_xml, json_metadata, metadata, monkeypatch, no_cover, pytestconfig, record_property, record_testsuite_property, record_xml_attribute, recwarn, start_ioc, time_machine, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory\n> use 'pytest --fixtures [testpath]' for help on them.\n\n/workspace/tligui_y/slic/tests/test_utils_reprate.py:112"}, "teardown": {"duration": 0.0001344471238553524, "outcome": "passed"}}], "warnings": [{"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}, {"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}]} \ No newline at end of file +{"created": 1755009991.0829394, "duration": 44.98698687553406, "exitcode": 1, "root": "/workspace/tligui_y/slic", "environment": {}, "summary": {"failed": 25, "total": 25, "collected": 25}, "collectors": [{"nodeid": "", "outcome": "passed", "result": [{"nodeid": "tests/test_utils_reprate.py", "type": "Module"}]}, {"nodeid": "tests/test_utils_reprate.py", "outcome": "passed", "result": [{"nodeid": "tests/test_utils_reprate.py::test_get_beamline[alvra-aramis]", "type": "Function", "lineno": 6}, {"nodeid": "tests/test_utils_reprate.py::test_get_beamline[bernina-aramis]", "type": "Function", "lineno": 6}, {"nodeid": "tests/test_utils_reprate.py::test_get_beamline[cristallina-aramis]", "type": "Function", "lineno": 6}, {"nodeid": "tests/test_utils_reprate.py::test_get_beamline[diavolezza-athos]", "type": "Function", "lineno": 6}, {"nodeid": "tests/test_utils_reprate.py::test_get_beamline[maloja-athos]", "type": "Function", "lineno": 6}, {"nodeid": "tests/test_utils_reprate.py::test_get_beamline[furka-athos]", "type": "Function", "lineno": 6}, {"nodeid": "tests/test_utils_reprate.py::test_get_pvname_reprate_for_inferred_beamline", "type": "Function", "lineno": 19}, {"nodeid": "tests/test_utils_reprate.py::test_infer_beamline_from_ip[129.129.242-alvra]", "type": "Function", "lineno": 27}, {"nodeid": "tests/test_utils_reprate.py::test_infer_beamline_from_ip[129.129.243-bernina]", "type": "Function", "lineno": 27}, {"nodeid": "tests/test_utils_reprate.py::test_infer_beamline_from_ip[129.129.244-cristallina]", "type": "Function", "lineno": 27}, {"nodeid": "tests/test_utils_reprate.py::test_infer_beamline_from_ip[129.129.245-diavolezza]", "type": "Function", "lineno": 27}, {"nodeid": "tests/test_utils_reprate.py::test_infer_beamline_from_ip[129.129.246-maloja]", "type": "Function", "lineno": 27}, {"nodeid": "tests/test_utils_reprate.py::test_infer_beamline_from_ip[129.129.247-furka]", "type": "Function", "lineno": 27}, {"nodeid": "tests/test_utils_reprate.py::test_get_pvname_reprate_with_instrument_and_beamline[alvra-aramis-SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB]", "type": "Function", "lineno": 42}, {"nodeid": "tests/test_utils_reprate.py::test_get_pvname_reprate_with_instrument_and_beamline[bernina-aramis-SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB]", "type": "Function", "lineno": 42}, {"nodeid": "tests/test_utils_reprate.py::test_get_pvname_reprate_with_instrument_and_beamline[cristallina-aramis-SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB]", "type": "Function", "lineno": 42}, {"nodeid": "tests/test_utils_reprate.py::test_get_pvname_reprate_with_instrument_and_beamline[diavolezza-athos-SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB]", "type": "Function", "lineno": 42}, {"nodeid": "tests/test_utils_reprate.py::test_get_pvname_reprate_with_instrument_and_beamline[maloja-athos-SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB]", "type": "Function", "lineno": 42}, {"nodeid": "tests/test_utils_reprate.py::test_get_pvname_reprate_with_instrument_and_beamline[furka-athos-SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB]", "type": "Function", "lineno": 42}, {"nodeid": "tests/test_utils_reprate.py::test_invalid_instrument_or_beamline", "type": "Function", "lineno": 55}, {"nodeid": "tests/test_utils_reprate.py::test_monitor_value_update", "type": "Function", "lineno": 65}, {"nodeid": "tests/test_utils_reprate.py::test_repr_method_with_initial_values", "type": "Function", "lineno": 84}, {"nodeid": "tests/test_utils_reprate.py::test_invalid_target_handling[invalid_instrument]", "type": "Function", "lineno": 100}, {"nodeid": "tests/test_utils_reprate.py::test_invalid_target_handling[non_existing_beamline]", "type": "Function", "lineno": 100}, {"nodeid": "tests/test_utils_reprate.py::test_retrieve_pvname_for_none_instrument_and_beamline", "type": "Function", "lineno": 111}]}], "tests": [{"nodeid": "tests/test_utils_reprate.py::test_get_beamline[alvra-aramis]", "lineno": 6, "outcome": "failed", "keywords": ["test_get_beamline[alvra-aramis]", "parametrize", "pytestmark", "alvra-aramis", "test_utils_reprate.py", "tests", "slic", ""], "setup": {"duration": 0.0006251591257750988, "outcome": "passed"}, "call": {"duration": 0.00019574910402297974, "outcome": "failed", "crash": {"path": "/workspace/tligui_y/slic/tests/test_utils_reprate.py", "lineno": 17, "message": "NameError: name 'get_beamline' is not defined"}, "traceback": [{"path": "tests/test_utils_reprate.py", "lineno": 17, "message": "NameError"}], "longrepr": "instrument = 'alvra', expected_beamline = 'aramis'\n\n @pytest.mark.parametrize(\"instrument,expected_beamline\", [\n (\"alvra\", \"aramis\"),\n (\"bernina\", \"aramis\"),\n (\"cristallina\", \"aramis\"),\n (\"diavolezza\", \"athos\"),\n (\"maloja\", \"athos\"),\n (\"furka\", \"athos\")\n ])\n def test_get_beamline(instrument, expected_beamline):\n \"\"\"Test the beamline retrieval for a given instrument.\"\"\"\n> beamline = get_beamline(instrument)\nE NameError: name 'get_beamline' is not defined\n\ntests/test_utils_reprate.py:17: NameError"}, "teardown": {"duration": 0.00036884984001517296, "outcome": "passed"}}, {"nodeid": "tests/test_utils_reprate.py::test_get_beamline[bernina-aramis]", "lineno": 6, "outcome": "failed", "keywords": ["test_get_beamline[bernina-aramis]", "parametrize", "pytestmark", "bernina-aramis", "test_utils_reprate.py", "tests", "slic", ""], "setup": {"duration": 0.00027963612228631973, "outcome": "passed"}, "call": {"duration": 0.00017753895372152328, "outcome": "failed", "crash": {"path": "/workspace/tligui_y/slic/tests/test_utils_reprate.py", "lineno": 17, "message": "NameError: name 'get_beamline' is not defined"}, "traceback": [{"path": "tests/test_utils_reprate.py", "lineno": 17, "message": "NameError"}], "longrepr": "instrument = 'bernina', expected_beamline = 'aramis'\n\n @pytest.mark.parametrize(\"instrument,expected_beamline\", [\n (\"alvra\", \"aramis\"),\n (\"bernina\", \"aramis\"),\n (\"cristallina\", \"aramis\"),\n (\"diavolezza\", \"athos\"),\n (\"maloja\", \"athos\"),\n (\"furka\", \"athos\")\n ])\n def test_get_beamline(instrument, expected_beamline):\n \"\"\"Test the beamline retrieval for a given instrument.\"\"\"\n> beamline = get_beamline(instrument)\nE NameError: name 'get_beamline' is not defined\n\ntests/test_utils_reprate.py:17: NameError"}, "teardown": {"duration": 0.00018078181892633438, "outcome": "passed"}}, {"nodeid": "tests/test_utils_reprate.py::test_get_beamline[cristallina-aramis]", "lineno": 6, "outcome": "failed", "keywords": ["test_get_beamline[cristallina-aramis]", "parametrize", "pytestmark", "cristallina-aramis", "test_utils_reprate.py", "tests", "slic", ""], "setup": {"duration": 0.0002489369362592697, "outcome": "passed"}, "call": {"duration": 0.00015116296708583832, "outcome": "failed", "crash": {"path": "/workspace/tligui_y/slic/tests/test_utils_reprate.py", "lineno": 17, "message": "NameError: name 'get_beamline' is not defined"}, "traceback": [{"path": "tests/test_utils_reprate.py", "lineno": 17, "message": "NameError"}], "longrepr": "instrument = 'cristallina', expected_beamline = 'aramis'\n\n @pytest.mark.parametrize(\"instrument,expected_beamline\", [\n (\"alvra\", \"aramis\"),\n (\"bernina\", \"aramis\"),\n (\"cristallina\", \"aramis\"),\n (\"diavolezza\", \"athos\"),\n (\"maloja\", \"athos\"),\n (\"furka\", \"athos\")\n ])\n def test_get_beamline(instrument, expected_beamline):\n \"\"\"Test the beamline retrieval for a given instrument.\"\"\"\n> beamline = get_beamline(instrument)\nE NameError: name 'get_beamline' is not defined\n\ntests/test_utils_reprate.py:17: NameError"}, "teardown": {"duration": 0.0001728772185742855, "outcome": "passed"}}, {"nodeid": "tests/test_utils_reprate.py::test_get_beamline[diavolezza-athos]", "lineno": 6, "outcome": "failed", "keywords": ["test_get_beamline[diavolezza-athos]", "parametrize", "pytestmark", "diavolezza-athos", "test_utils_reprate.py", "tests", "slic", ""], "setup": {"duration": 0.0002289717085659504, "outcome": "passed"}, "call": {"duration": 0.00014679599553346634, "outcome": "failed", "crash": {"path": "/workspace/tligui_y/slic/tests/test_utils_reprate.py", "lineno": 17, "message": "NameError: name 'get_beamline' is not defined"}, "traceback": [{"path": "tests/test_utils_reprate.py", "lineno": 17, "message": "NameError"}], "longrepr": "instrument = 'diavolezza', expected_beamline = 'athos'\n\n @pytest.mark.parametrize(\"instrument,expected_beamline\", [\n (\"alvra\", \"aramis\"),\n (\"bernina\", \"aramis\"),\n (\"cristallina\", \"aramis\"),\n (\"diavolezza\", \"athos\"),\n (\"maloja\", \"athos\"),\n (\"furka\", \"athos\")\n ])\n def test_get_beamline(instrument, expected_beamline):\n \"\"\"Test the beamline retrieval for a given instrument.\"\"\"\n> beamline = get_beamline(instrument)\nE NameError: name 'get_beamline' is not defined\n\ntests/test_utils_reprate.py:17: NameError"}, "teardown": {"duration": 0.00017174100503325462, "outcome": "passed"}}, {"nodeid": "tests/test_utils_reprate.py::test_get_beamline[maloja-athos]", "lineno": 6, "outcome": "failed", "keywords": ["test_get_beamline[maloja-athos]", "parametrize", "pytestmark", "maloja-athos", "test_utils_reprate.py", "tests", "slic", ""], "setup": {"duration": 0.0002244538627564907, "outcome": "passed"}, "call": {"duration": 0.00014678901061415672, "outcome": "failed", "crash": {"path": "/workspace/tligui_y/slic/tests/test_utils_reprate.py", "lineno": 17, "message": "NameError: name 'get_beamline' is not defined"}, "traceback": [{"path": "tests/test_utils_reprate.py", "lineno": 17, "message": "NameError"}], "longrepr": "instrument = 'maloja', expected_beamline = 'athos'\n\n @pytest.mark.parametrize(\"instrument,expected_beamline\", [\n (\"alvra\", \"aramis\"),\n (\"bernina\", \"aramis\"),\n (\"cristallina\", \"aramis\"),\n (\"diavolezza\", \"athos\"),\n (\"maloja\", \"athos\"),\n (\"furka\", \"athos\")\n ])\n def test_get_beamline(instrument, expected_beamline):\n \"\"\"Test the beamline retrieval for a given instrument.\"\"\"\n> beamline = get_beamline(instrument)\nE NameError: name 'get_beamline' is not defined\n\ntests/test_utils_reprate.py:17: NameError"}, "teardown": {"duration": 0.00018551573157310486, "outcome": "passed"}}, {"nodeid": "tests/test_utils_reprate.py::test_get_beamline[furka-athos]", "lineno": 6, "outcome": "failed", "keywords": ["test_get_beamline[furka-athos]", "parametrize", "pytestmark", "furka-athos", "test_utils_reprate.py", "tests", "slic", ""], "setup": {"duration": 0.00022587599232792854, "outcome": "passed"}, "call": {"duration": 0.00015553878620266914, "outcome": "failed", "crash": {"path": "/workspace/tligui_y/slic/tests/test_utils_reprate.py", "lineno": 17, "message": "NameError: name 'get_beamline' is not defined"}, "traceback": [{"path": "tests/test_utils_reprate.py", "lineno": 17, "message": "NameError"}], "longrepr": "instrument = 'furka', expected_beamline = 'athos'\n\n @pytest.mark.parametrize(\"instrument,expected_beamline\", [\n (\"alvra\", \"aramis\"),\n (\"bernina\", \"aramis\"),\n (\"cristallina\", \"aramis\"),\n (\"diavolezza\", \"athos\"),\n (\"maloja\", \"athos\"),\n (\"furka\", \"athos\")\n ])\n def test_get_beamline(instrument, expected_beamline):\n \"\"\"Test the beamline retrieval for a given instrument.\"\"\"\n> beamline = get_beamline(instrument)\nE NameError: name 'get_beamline' is not defined\n\ntests/test_utils_reprate.py:17: NameError"}, "teardown": {"duration": 0.00017277291044592857, "outcome": "passed"}}, {"nodeid": "tests/test_utils_reprate.py::test_get_pvname_reprate_for_inferred_beamline", "lineno": 19, "outcome": "failed", "keywords": ["test_get_pvname_reprate_for_inferred_beamline", "test_utils_reprate.py", "tests", "slic", ""], "setup": {"duration": 0.0001168171875178814, "outcome": "passed"}, "call": {"duration": 0.00014580925926566124, "outcome": "failed", "crash": {"path": "/workspace/tligui_y/slic/tests/test_utils_reprate.py", "lineno": 23, "message": "NameError: name 'patch' is not defined"}, "traceback": [{"path": "tests/test_utils_reprate.py", "lineno": 23, "message": "NameError"}], "longrepr": "def test_get_pvname_reprate_for_inferred_beamline():\n \"\"\"Test the PV name retrieval when using inferred beamline based on IP address.\"\"\"\n # Mock the socket to simulate an IP address\n> with patch(\"socket.gethostname\", return_value=\"testhost\"), patch(\"socket.gethostbyname\", return_value=\"129.129.242\"):\nE NameError: name 'patch' is not defined\n\ntests/test_utils_reprate.py:23: NameError"}, "teardown": {"duration": 0.00014422880485653877, "outcome": "passed"}}, {"nodeid": "tests/test_utils_reprate.py::test_infer_beamline_from_ip[129.129.242-alvra]", "lineno": 27, "outcome": "failed", "keywords": ["test_infer_beamline_from_ip[129.129.242-alvra]", "parametrize", "pytestmark", "129.129.242-alvra", "test_utils_reprate.py", "tests", "slic", ""], "setup": {"duration": 0.00023102527484297752, "outcome": "passed"}, "call": {"duration": 0.00016229692846536636, "outcome": "failed", "crash": {"path": "/workspace/tligui_y/slic/tests/test_utils_reprate.py", "lineno": 39, "message": "NameError: name 'patch' is not defined"}, "traceback": [{"path": "tests/test_utils_reprate.py", "lineno": 39, "message": "NameError"}], "longrepr": "ip = '129.129.242', expected_instrument = 'alvra'\n\n @pytest.mark.parametrize(\"ip,expected_instrument\", [\n (\"129.129.242\", \"alvra\"),\n (\"129.129.243\", \"bernina\"),\n (\"129.129.244\", \"cristallina\"),\n (\"129.129.245\", \"diavolezza\"),\n (\"129.129.246\", \"maloja\"),\n (\"129.129.247\", \"furka\")\n ])\n def test_infer_beamline_from_ip(ip, expected_instrument):\n \"\"\"Test that the beamline is correctly inferred based on the IP address.\"\"\"\n # Mock the socket functions to simulate an IP address\n> with patch(\"socket.gethostname\", return_value=\"testhost\"), patch(\"socket.gethostbyname\", return_value=ip):\nE NameError: name 'patch' is not defined\n\ntests/test_utils_reprate.py:39: NameError"}, "teardown": {"duration": 0.00017371680587530136, "outcome": "passed"}}, {"nodeid": "tests/test_utils_reprate.py::test_infer_beamline_from_ip[129.129.243-bernina]", "lineno": 27, "outcome": "failed", "keywords": ["test_infer_beamline_from_ip[129.129.243-bernina]", "parametrize", "pytestmark", "129.129.243-bernina", "test_utils_reprate.py", "tests", "slic", ""], "setup": {"duration": 0.00022310297936201096, "outcome": "passed"}, "call": {"duration": 0.00015955884009599686, "outcome": "failed", "crash": {"path": "/workspace/tligui_y/slic/tests/test_utils_reprate.py", "lineno": 39, "message": "NameError: name 'patch' is not defined"}, "traceback": [{"path": "tests/test_utils_reprate.py", "lineno": 39, "message": "NameError"}], "longrepr": "ip = '129.129.243', expected_instrument = 'bernina'\n\n @pytest.mark.parametrize(\"ip,expected_instrument\", [\n (\"129.129.242\", \"alvra\"),\n (\"129.129.243\", \"bernina\"),\n (\"129.129.244\", \"cristallina\"),\n (\"129.129.245\", \"diavolezza\"),\n (\"129.129.246\", \"maloja\"),\n (\"129.129.247\", \"furka\")\n ])\n def test_infer_beamline_from_ip(ip, expected_instrument):\n \"\"\"Test that the beamline is correctly inferred based on the IP address.\"\"\"\n # Mock the socket functions to simulate an IP address\n> with patch(\"socket.gethostname\", return_value=\"testhost\"), patch(\"socket.gethostbyname\", return_value=ip):\nE NameError: name 'patch' is not defined\n\ntests/test_utils_reprate.py:39: NameError"}, "teardown": {"duration": 0.00016975589096546173, "outcome": "passed"}}, {"nodeid": "tests/test_utils_reprate.py::test_infer_beamline_from_ip[129.129.244-cristallina]", "lineno": 27, "outcome": "failed", "keywords": ["test_infer_beamline_from_ip[129.129.244-cristallina]", "parametrize", "pytestmark", "129.129.244-cristallina", "test_utils_reprate.py", "tests", "slic", ""], "setup": {"duration": 0.00022522499784827232, "outcome": "passed"}, "call": {"duration": 0.00015114014968276024, "outcome": "failed", "crash": {"path": "/workspace/tligui_y/slic/tests/test_utils_reprate.py", "lineno": 39, "message": "NameError: name 'patch' is not defined"}, "traceback": [{"path": "tests/test_utils_reprate.py", "lineno": 39, "message": "NameError"}], "longrepr": "ip = '129.129.244', expected_instrument = 'cristallina'\n\n @pytest.mark.parametrize(\"ip,expected_instrument\", [\n (\"129.129.242\", \"alvra\"),\n (\"129.129.243\", \"bernina\"),\n (\"129.129.244\", \"cristallina\"),\n (\"129.129.245\", \"diavolezza\"),\n (\"129.129.246\", \"maloja\"),\n (\"129.129.247\", \"furka\")\n ])\n def test_infer_beamline_from_ip(ip, expected_instrument):\n \"\"\"Test that the beamline is correctly inferred based on the IP address.\"\"\"\n # Mock the socket functions to simulate an IP address\n> with patch(\"socket.gethostname\", return_value=\"testhost\"), patch(\"socket.gethostbyname\", return_value=ip):\nE NameError: name 'patch' is not defined\n\ntests/test_utils_reprate.py:39: NameError"}, "teardown": {"duration": 0.00016904156655073166, "outcome": "passed"}}, {"nodeid": "tests/test_utils_reprate.py::test_infer_beamline_from_ip[129.129.245-diavolezza]", "lineno": 27, "outcome": "failed", "keywords": ["test_infer_beamline_from_ip[129.129.245-diavolezza]", "parametrize", "pytestmark", "129.129.245-diavolezza", "test_utils_reprate.py", "tests", "slic", ""], "setup": {"duration": 0.00022405432537198067, "outcome": "passed"}, "call": {"duration": 0.0001450730487704277, "outcome": "failed", "crash": {"path": "/workspace/tligui_y/slic/tests/test_utils_reprate.py", "lineno": 39, "message": "NameError: name 'patch' is not defined"}, "traceback": [{"path": "tests/test_utils_reprate.py", "lineno": 39, "message": "NameError"}], "longrepr": "ip = '129.129.245', expected_instrument = 'diavolezza'\n\n @pytest.mark.parametrize(\"ip,expected_instrument\", [\n (\"129.129.242\", \"alvra\"),\n (\"129.129.243\", \"bernina\"),\n (\"129.129.244\", \"cristallina\"),\n (\"129.129.245\", \"diavolezza\"),\n (\"129.129.246\", \"maloja\"),\n (\"129.129.247\", \"furka\")\n ])\n def test_infer_beamline_from_ip(ip, expected_instrument):\n \"\"\"Test that the beamline is correctly inferred based on the IP address.\"\"\"\n # Mock the socket functions to simulate an IP address\n> with patch(\"socket.gethostname\", return_value=\"testhost\"), patch(\"socket.gethostbyname\", return_value=ip):\nE NameError: name 'patch' is not defined\n\ntests/test_utils_reprate.py:39: NameError"}, "teardown": {"duration": 0.00017444416880607605, "outcome": "passed"}}, {"nodeid": "tests/test_utils_reprate.py::test_infer_beamline_from_ip[129.129.246-maloja]", "lineno": 27, "outcome": "failed", "keywords": ["test_infer_beamline_from_ip[129.129.246-maloja]", "parametrize", "pytestmark", "129.129.246-maloja", "test_utils_reprate.py", "tests", "slic", ""], "setup": {"duration": 0.00022431230172514915, "outcome": "passed"}, "call": {"duration": 0.00015002721920609474, "outcome": "failed", "crash": {"path": "/workspace/tligui_y/slic/tests/test_utils_reprate.py", "lineno": 39, "message": "NameError: name 'patch' is not defined"}, "traceback": [{"path": "tests/test_utils_reprate.py", "lineno": 39, "message": "NameError"}], "longrepr": "ip = '129.129.246', expected_instrument = 'maloja'\n\n @pytest.mark.parametrize(\"ip,expected_instrument\", [\n (\"129.129.242\", \"alvra\"),\n (\"129.129.243\", \"bernina\"),\n (\"129.129.244\", \"cristallina\"),\n (\"129.129.245\", \"diavolezza\"),\n (\"129.129.246\", \"maloja\"),\n (\"129.129.247\", \"furka\")\n ])\n def test_infer_beamline_from_ip(ip, expected_instrument):\n \"\"\"Test that the beamline is correctly inferred based on the IP address.\"\"\"\n # Mock the socket functions to simulate an IP address\n> with patch(\"socket.gethostname\", return_value=\"testhost\"), patch(\"socket.gethostbyname\", return_value=ip):\nE NameError: name 'patch' is not defined\n\ntests/test_utils_reprate.py:39: NameError"}, "teardown": {"duration": 0.00017553521320223808, "outcome": "passed"}}, {"nodeid": "tests/test_utils_reprate.py::test_infer_beamline_from_ip[129.129.247-furka]", "lineno": 27, "outcome": "failed", "keywords": ["test_infer_beamline_from_ip[129.129.247-furka]", "parametrize", "pytestmark", "129.129.247-furka", "test_utils_reprate.py", "tests", "slic", ""], "setup": {"duration": 0.00022372836247086525, "outcome": "passed"}, "call": {"duration": 0.0001480639912188053, "outcome": "failed", "crash": {"path": "/workspace/tligui_y/slic/tests/test_utils_reprate.py", "lineno": 39, "message": "NameError: name 'patch' is not defined"}, "traceback": [{"path": "tests/test_utils_reprate.py", "lineno": 39, "message": "NameError"}], "longrepr": "ip = '129.129.247', expected_instrument = 'furka'\n\n @pytest.mark.parametrize(\"ip,expected_instrument\", [\n (\"129.129.242\", \"alvra\"),\n (\"129.129.243\", \"bernina\"),\n (\"129.129.244\", \"cristallina\"),\n (\"129.129.245\", \"diavolezza\"),\n (\"129.129.246\", \"maloja\"),\n (\"129.129.247\", \"furka\")\n ])\n def test_infer_beamline_from_ip(ip, expected_instrument):\n \"\"\"Test that the beamline is correctly inferred based on the IP address.\"\"\"\n # Mock the socket functions to simulate an IP address\n> with patch(\"socket.gethostname\", return_value=\"testhost\"), patch(\"socket.gethostbyname\", return_value=ip):\nE NameError: name 'patch' is not defined\n\ntests/test_utils_reprate.py:39: NameError"}, "teardown": {"duration": 0.00017020292580127716, "outcome": "passed"}}, {"nodeid": "tests/test_utils_reprate.py::test_get_pvname_reprate_with_instrument_and_beamline[alvra-aramis-SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB]", "lineno": 42, "outcome": "failed", "keywords": ["test_get_pvname_reprate_with_instrument_and_beamline[alvra-aramis-SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB]", "parametrize", "pytestmark", "alvra-aramis-SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB", "test_utils_reprate.py", "tests", "slic", ""], "setup": {"duration": 0.00026961416006088257, "outcome": "passed"}, "call": {"duration": 0.0001488872803747654, "outcome": "failed", "crash": {"path": "/workspace/tligui_y/slic/tests/test_utils_reprate.py", "lineno": 53, "message": "NameError: name 'get_pvname_reprate' is not defined"}, "traceback": [{"path": "tests/test_utils_reprate.py", "lineno": 53, "message": "NameError"}], "longrepr": "instrument = 'alvra', beamline = 'aramis'\npvname = 'SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB'\n\n @pytest.mark.parametrize(\"instrument,beamline,pvname\", [\n (\"alvra\", \"aramis\", \"SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB\"),\n (\"bernina\", \"aramis\", \"SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB\"),\n (\"cristallina\", \"aramis\", \"SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB\"),\n (\"diavolezza\", \"athos\", \"SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB\"),\n (\"maloja\", \"athos\", \"SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB\"),\n (\"furka\", \"athos\", \"SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB\")\n ])\n def test_get_pvname_reprate_with_instrument_and_beamline(instrument, beamline, pvname):\n \"\"\"Test that the PV name is correctly retrieved based on instrument and beamline.\"\"\"\n> retrieved_pvname = get_pvname_reprate(instrument, beamline)\nE NameError: name 'get_pvname_reprate' is not defined\n\ntests/test_utils_reprate.py:53: NameError"}, "teardown": {"duration": 0.00018408428877592087, "outcome": "passed"}}, {"nodeid": "tests/test_utils_reprate.py::test_get_pvname_reprate_with_instrument_and_beamline[bernina-aramis-SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB]", "lineno": 42, "outcome": "failed", "keywords": ["test_get_pvname_reprate_with_instrument_and_beamline[bernina-aramis-SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB]", "parametrize", "pytestmark", "bernina-aramis-SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB", "test_utils_reprate.py", "tests", "slic", ""], "setup": {"duration": 0.00026374170556664467, "outcome": "passed"}, "call": {"duration": 0.0001592552289366722, "outcome": "failed", "crash": {"path": "/workspace/tligui_y/slic/tests/test_utils_reprate.py", "lineno": 53, "message": "NameError: name 'get_pvname_reprate' is not defined"}, "traceback": [{"path": "tests/test_utils_reprate.py", "lineno": 53, "message": "NameError"}], "longrepr": "instrument = 'bernina', beamline = 'aramis'\npvname = 'SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB'\n\n @pytest.mark.parametrize(\"instrument,beamline,pvname\", [\n (\"alvra\", \"aramis\", \"SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB\"),\n (\"bernina\", \"aramis\", \"SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB\"),\n (\"cristallina\", \"aramis\", \"SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB\"),\n (\"diavolezza\", \"athos\", \"SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB\"),\n (\"maloja\", \"athos\", \"SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB\"),\n (\"furka\", \"athos\", \"SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB\")\n ])\n def test_get_pvname_reprate_with_instrument_and_beamline(instrument, beamline, pvname):\n \"\"\"Test that the PV name is correctly retrieved based on instrument and beamline.\"\"\"\n> retrieved_pvname = get_pvname_reprate(instrument, beamline)\nE NameError: name 'get_pvname_reprate' is not defined\n\ntests/test_utils_reprate.py:53: NameError"}, "teardown": {"duration": 0.00018347380682826042, "outcome": "passed"}}, {"nodeid": "tests/test_utils_reprate.py::test_get_pvname_reprate_with_instrument_and_beamline[cristallina-aramis-SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB]", "lineno": 42, "outcome": "failed", "keywords": ["test_get_pvname_reprate_with_instrument_and_beamline[cristallina-aramis-SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB]", "parametrize", "pytestmark", "cristallina-aramis-SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB", "test_utils_reprate.py", "tests", "slic", ""], "setup": {"duration": 0.00027245376259088516, "outcome": "passed"}, "call": {"duration": 0.0001491042785346508, "outcome": "failed", "crash": {"path": "/workspace/tligui_y/slic/tests/test_utils_reprate.py", "lineno": 53, "message": "NameError: name 'get_pvname_reprate' is not defined"}, "traceback": [{"path": "tests/test_utils_reprate.py", "lineno": 53, "message": "NameError"}], "longrepr": "instrument = 'cristallina', beamline = 'aramis'\npvname = 'SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB'\n\n @pytest.mark.parametrize(\"instrument,beamline,pvname\", [\n (\"alvra\", \"aramis\", \"SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB\"),\n (\"bernina\", \"aramis\", \"SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB\"),\n (\"cristallina\", \"aramis\", \"SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB\"),\n (\"diavolezza\", \"athos\", \"SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB\"),\n (\"maloja\", \"athos\", \"SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB\"),\n (\"furka\", \"athos\", \"SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB\")\n ])\n def test_get_pvname_reprate_with_instrument_and_beamline(instrument, beamline, pvname):\n \"\"\"Test that the PV name is correctly retrieved based on instrument and beamline.\"\"\"\n> retrieved_pvname = get_pvname_reprate(instrument, beamline)\nE NameError: name 'get_pvname_reprate' is not defined\n\ntests/test_utils_reprate.py:53: NameError"}, "teardown": {"duration": 0.00018107611685991287, "outcome": "passed"}}, {"nodeid": "tests/test_utils_reprate.py::test_get_pvname_reprate_with_instrument_and_beamline[diavolezza-athos-SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB]", "lineno": 42, "outcome": "failed", "keywords": ["test_get_pvname_reprate_with_instrument_and_beamline[diavolezza-athos-SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB]", "parametrize", "pytestmark", "diavolezza-athos-SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB", "test_utils_reprate.py", "tests", "slic", ""], "setup": {"duration": 0.0002651219256222248, "outcome": "passed"}, "call": {"duration": 0.0001491815783083439, "outcome": "failed", "crash": {"path": "/workspace/tligui_y/slic/tests/test_utils_reprate.py", "lineno": 53, "message": "NameError: name 'get_pvname_reprate' is not defined"}, "traceback": [{"path": "tests/test_utils_reprate.py", "lineno": 53, "message": "NameError"}], "longrepr": "instrument = 'diavolezza', beamline = 'athos'\npvname = 'SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB'\n\n @pytest.mark.parametrize(\"instrument,beamline,pvname\", [\n (\"alvra\", \"aramis\", \"SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB\"),\n (\"bernina\", \"aramis\", \"SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB\"),\n (\"cristallina\", \"aramis\", \"SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB\"),\n (\"diavolezza\", \"athos\", \"SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB\"),\n (\"maloja\", \"athos\", \"SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB\"),\n (\"furka\", \"athos\", \"SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB\")\n ])\n def test_get_pvname_reprate_with_instrument_and_beamline(instrument, beamline, pvname):\n \"\"\"Test that the PV name is correctly retrieved based on instrument and beamline.\"\"\"\n> retrieved_pvname = get_pvname_reprate(instrument, beamline)\nE NameError: name 'get_pvname_reprate' is not defined\n\ntests/test_utils_reprate.py:53: NameError"}, "teardown": {"duration": 0.00019512884318828583, "outcome": "passed"}}, {"nodeid": "tests/test_utils_reprate.py::test_get_pvname_reprate_with_instrument_and_beamline[maloja-athos-SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB]", "lineno": 42, "outcome": "failed", "keywords": ["test_get_pvname_reprate_with_instrument_and_beamline[maloja-athos-SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB]", "parametrize", "pytestmark", "maloja-athos-SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB", "test_utils_reprate.py", "tests", "slic", ""], "setup": {"duration": 0.000265300739556551, "outcome": "passed"}, "call": {"duration": 0.00014799833297729492, "outcome": "failed", "crash": {"path": "/workspace/tligui_y/slic/tests/test_utils_reprate.py", "lineno": 53, "message": "NameError: name 'get_pvname_reprate' is not defined"}, "traceback": [{"path": "tests/test_utils_reprate.py", "lineno": 53, "message": "NameError"}], "longrepr": "instrument = 'maloja', beamline = 'athos'\npvname = 'SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB'\n\n @pytest.mark.parametrize(\"instrument,beamline,pvname\", [\n (\"alvra\", \"aramis\", \"SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB\"),\n (\"bernina\", \"aramis\", \"SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB\"),\n (\"cristallina\", \"aramis\", \"SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB\"),\n (\"diavolezza\", \"athos\", \"SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB\"),\n (\"maloja\", \"athos\", \"SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB\"),\n (\"furka\", \"athos\", \"SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB\")\n ])\n def test_get_pvname_reprate_with_instrument_and_beamline(instrument, beamline, pvname):\n \"\"\"Test that the PV name is correctly retrieved based on instrument and beamline.\"\"\"\n> retrieved_pvname = get_pvname_reprate(instrument, beamline)\nE NameError: name 'get_pvname_reprate' is not defined\n\ntests/test_utils_reprate.py:53: NameError"}, "teardown": {"duration": 0.00018071476370096207, "outcome": "passed"}}, {"nodeid": "tests/test_utils_reprate.py::test_get_pvname_reprate_with_instrument_and_beamline[furka-athos-SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB]", "lineno": 42, "outcome": "failed", "keywords": ["test_get_pvname_reprate_with_instrument_and_beamline[furka-athos-SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB]", "parametrize", "pytestmark", "furka-athos-SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB", "test_utils_reprate.py", "tests", "slic", ""], "setup": {"duration": 0.0002671908587217331, "outcome": "passed"}, "call": {"duration": 0.00015861773863434792, "outcome": "failed", "crash": {"path": "/workspace/tligui_y/slic/tests/test_utils_reprate.py", "lineno": 53, "message": "NameError: name 'get_pvname_reprate' is not defined"}, "traceback": [{"path": "tests/test_utils_reprate.py", "lineno": 53, "message": "NameError"}], "longrepr": "instrument = 'furka', beamline = 'athos'\npvname = 'SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB'\n\n @pytest.mark.parametrize(\"instrument,beamline,pvname\", [\n (\"alvra\", \"aramis\", \"SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB\"),\n (\"bernina\", \"aramis\", \"SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB\"),\n (\"cristallina\", \"aramis\", \"SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB\"),\n (\"diavolezza\", \"athos\", \"SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB\"),\n (\"maloja\", \"athos\", \"SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB\"),\n (\"furka\", \"athos\", \"SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB\")\n ])\n def test_get_pvname_reprate_with_instrument_and_beamline(instrument, beamline, pvname):\n \"\"\"Test that the PV name is correctly retrieved based on instrument and beamline.\"\"\"\n> retrieved_pvname = get_pvname_reprate(instrument, beamline)\nE NameError: name 'get_pvname_reprate' is not defined\n\ntests/test_utils_reprate.py:53: NameError"}, "teardown": {"duration": 0.00021021626889705658, "outcome": "passed"}}, {"nodeid": "tests/test_utils_reprate.py::test_invalid_instrument_or_beamline", "lineno": 55, "outcome": "failed", "keywords": ["test_invalid_instrument_or_beamline", "test_utils_reprate.py", "tests", "slic", ""], "setup": {"duration": 0.00011828402057290077, "outcome": "passed"}, "call": {"duration": 0.0002735080197453499, "outcome": "failed", "crash": {"path": "/workspace/tligui_y/slic/slic/utils/reprate.py", "lineno": 70, "message": "AttributeError: 'NoneType' object has no attribute 'capitalize'"}, "traceback": [{"path": "tests/test_utils_reprate.py", "lineno": 59, "message": ""}, {"path": "slic/utils/reprate.py", "lineno": 70, "message": "AttributeError"}], "longrepr": "def test_invalid_instrument_or_beamline():\n \"\"\"Test that None is returned when an invalid instrument or beamline is provided.\"\"\"\n # Invalid instrument\n> monitor = RepRateMonitor(target=\"invalid_instrument\")\n\ntests/test_utils_reprate.py:59: \n_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ \n\nself = <[AttributeError(\"'RepRateMonitor' object has no attribute 'name'\") raised in repr()] RepRateMonitor object at 0x7ff7354bb880>\ntarget = 'invalid_instrument'\n\n def __init__(self, target=None):\n if target is not None:\n target = target.lower()\n \n instrument = target if target in INSTRUMENTS else None\n beamline = target if target in BEAMLINES else None\n \n if beamline is None:\n beamline = get_beamline(instrument)\n \n pvname = get_pvname_reprate(instrument, beamline)\n \n> beamline = beamline.capitalize()\nE AttributeError: 'NoneType' object has no attribute 'capitalize'\n\nslic/utils/reprate.py:70: AttributeError"}, "teardown": {"duration": 0.0001454101875424385, "outcome": "passed"}}, {"nodeid": "tests/test_utils_reprate.py::test_monitor_value_update", "lineno": 65, "outcome": "failed", "keywords": ["test_monitor_value_update", "test_utils_reprate.py", "tests", "slic", ""], "setup": {"duration": 0.00011640787124633789, "outcome": "passed"}, "call": {"duration": 20.10348570998758, "outcome": "failed", "crash": {"path": "/workspace/tligui_y/slic/tests/test_utils_reprate.py", "lineno": 71, "message": "AssertionError: Expected 20.0, but got None\nassert None == 20.0\n + where None = Aramis Rep. Rate: None None.value"}, "traceback": [{"path": "tests/test_utils_reprate.py", "lineno": 71, "message": "AssertionError"}], "longrepr": "def test_monitor_value_update():\n #Test that the RepRateMonitor correctly updates its value and units\n monitor = RepRateMonitor(\"alvra\") # Example instrument\n \n # Check that the initial value is 20.0 and the units are correct\n> assert monitor.value == 20.0, f\"Expected 20.0, but got {monitor.value}\"\nE AssertionError: Expected 20.0, but got None\nE assert None == 20.0\nE + where None = Aramis Rep. Rate: None None.value\n\ntests/test_utils_reprate.py:71: AssertionError"}, "teardown": {"duration": 0.00041046785190701485, "outcome": "passed"}}, {"nodeid": "tests/test_utils_reprate.py::test_repr_method_with_initial_values", "lineno": 84, "outcome": "failed", "keywords": ["test_repr_method_with_initial_values", "test_utils_reprate.py", "tests", "slic", ""], "setup": {"duration": 0.0002155364491045475, "outcome": "passed"}, "call": {"duration": 20.00168715696782, "outcome": "failed", "crash": {"path": "/workspace/tligui_y/slic/tests/test_utils_reprate.py", "lineno": 98, "message": "AssertionError: Expected 'Aramis Rep. Rate: 20.0 Hz', but got 'Aramis Rep. Rate: None None'\nassert 'Aramis Rep. Rate: None None' == 'Aramis Rep. Rate: 20.0 Hz'\n \n - Aramis Rep. Rate: 20.0 Hz\n + Aramis Rep. Rate: None None"}, "traceback": [{"path": "tests/test_utils_reprate.py", "lineno": 98, "message": "AssertionError"}], "longrepr": "def test_repr_method_with_initial_values():\n # Test __repr__\n monitor = RepRateMonitor(\"alvra\")\n \n # Expected initial values\n expected_name = \"Aramis Rep. Rate\"\n expected_value = 20.0\n expected_units = \"Hz\"\n \n # Expected representation\n expected_repr = f\"{expected_name}: {expected_value} {expected_units}\"\n \n # Check that the __repr__ method returns the expected string\n> assert repr(monitor) == expected_repr, f\"Expected '{expected_repr}', but got '{repr(monitor)}'\"\nE AssertionError: Expected 'Aramis Rep. Rate: 20.0 Hz', but got 'Aramis Rep. Rate: None None'\nE assert 'Aramis Rep. Rate: None None' == 'Aramis Rep. Rate: 20.0 Hz'\nE \nE - Aramis Rep. Rate: 20.0 Hz\nE + Aramis Rep. Rate: None None\n\ntests/test_utils_reprate.py:98: AssertionError"}, "teardown": {"duration": 0.0002026609145104885, "outcome": "passed"}}, {"nodeid": "tests/test_utils_reprate.py::test_invalid_target_handling[invalid_instrument]", "lineno": 100, "outcome": "failed", "keywords": ["test_invalid_target_handling[invalid_instrument]", "parametrize", "pytestmark", "invalid_instrument", "test_utils_reprate.py", "tests", "slic", ""], "setup": {"duration": 0.0003997604362666607, "outcome": "passed"}, "call": {"duration": 0.0004198583774268627, "outcome": "failed", "crash": {"path": "/workspace/tligui_y/slic/slic/utils/reprate.py", "lineno": 70, "message": "AttributeError: 'NoneType' object has no attribute 'capitalize'"}, "traceback": [{"path": "tests/test_utils_reprate.py", "lineno": 107, "message": ""}, {"path": "slic/utils/reprate.py", "lineno": 70, "message": "AttributeError"}], "longrepr": "invalid_target = 'invalid_instrument'\n\n @pytest.mark.parametrize(\"invalid_target\", [\n \"invalid_instrument\", # Non-existent instrument\n \"non_existing_beamline\" # Non-existent beamline\n ])\n def test_invalid_target_handling(invalid_target):\n # Test that an invalid target correctly results in None for PV name.\"\"\"\n> monitor = RepRateMonitor(invalid_target)\n\ntests/test_utils_reprate.py:107: \n_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ \n\nself = <[AttributeError(\"'RepRateMonitor' object has no attribute 'name'\") raised in repr()] RepRateMonitor object at 0x7ff72fa66520>\ntarget = 'invalid_instrument'\n\n def __init__(self, target=None):\n if target is not None:\n target = target.lower()\n \n instrument = target if target in INSTRUMENTS else None\n beamline = target if target in BEAMLINES else None\n \n if beamline is None:\n beamline = get_beamline(instrument)\n \n pvname = get_pvname_reprate(instrument, beamline)\n \n> beamline = beamline.capitalize()\nE AttributeError: 'NoneType' object has no attribute 'capitalize'\n\nslic/utils/reprate.py:70: AttributeError"}, "teardown": {"duration": 0.00019546505063772202, "outcome": "passed"}}, {"nodeid": "tests/test_utils_reprate.py::test_invalid_target_handling[non_existing_beamline]", "lineno": 100, "outcome": "failed", "keywords": ["test_invalid_target_handling[non_existing_beamline]", "parametrize", "pytestmark", "non_existing_beamline", "test_utils_reprate.py", "tests", "slic", ""], "setup": {"duration": 0.00022458191961050034, "outcome": "passed"}, "call": {"duration": 0.00023952079936861992, "outcome": "failed", "crash": {"path": "/workspace/tligui_y/slic/slic/utils/reprate.py", "lineno": 70, "message": "AttributeError: 'NoneType' object has no attribute 'capitalize'"}, "traceback": [{"path": "tests/test_utils_reprate.py", "lineno": 107, "message": ""}, {"path": "slic/utils/reprate.py", "lineno": 70, "message": "AttributeError"}], "longrepr": "invalid_target = 'non_existing_beamline'\n\n @pytest.mark.parametrize(\"invalid_target\", [\n \"invalid_instrument\", # Non-existent instrument\n \"non_existing_beamline\" # Non-existent beamline\n ])\n def test_invalid_target_handling(invalid_target):\n # Test that an invalid target correctly results in None for PV name.\"\"\"\n> monitor = RepRateMonitor(invalid_target)\n\ntests/test_utils_reprate.py:107: \n_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ \n\nself = <[AttributeError(\"'RepRateMonitor' object has no attribute 'name'\") raised in repr()] RepRateMonitor object at 0x7ff72fa6ecd0>\ntarget = 'non_existing_beamline'\n\n def __init__(self, target=None):\n if target is not None:\n target = target.lower()\n \n instrument = target if target in INSTRUMENTS else None\n beamline = target if target in BEAMLINES else None\n \n if beamline is None:\n beamline = get_beamline(instrument)\n \n pvname = get_pvname_reprate(instrument, beamline)\n \n> beamline = beamline.capitalize()\nE AttributeError: 'NoneType' object has no attribute 'capitalize'\n\nslic/utils/reprate.py:70: AttributeError"}, "teardown": {"duration": 0.00016262615099549294, "outcome": "passed"}}, {"nodeid": "tests/test_utils_reprate.py::test_retrieve_pvname_for_none_instrument_and_beamline", "lineno": 111, "outcome": "failed", "keywords": ["test_retrieve_pvname_for_none_instrument_and_beamline", "test_utils_reprate.py", "tests", "slic", ""], "setup": {"duration": 0.00011584162712097168, "outcome": "passed"}, "call": {"duration": 0.00021672388538718224, "outcome": "failed", "crash": {"path": "/workspace/tligui_y/slic/slic/utils/reprate.py", "lineno": 70, "message": "AttributeError: 'NoneType' object has no attribute 'capitalize'"}, "traceback": [{"path": "tests/test_utils_reprate.py", "lineno": 114, "message": ""}, {"path": "slic/utils/reprate.py", "lineno": 70, "message": "AttributeError"}], "longrepr": "def test_retrieve_pvname_for_none_instrument_and_beamline():\n # Test that if both instrument and beamline are None, the method works correctly.\"\"\"\n> monitor = RepRateMonitor(target=None)\n\ntests/test_utils_reprate.py:114: \n_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ \n\nself = <[AttributeError(\"'RepRateMonitor' object has no attribute 'name'\") raised in repr()] RepRateMonitor object at 0x7ff7354be520>\ntarget = None\n\n def __init__(self, target=None):\n if target is not None:\n target = target.lower()\n \n instrument = target if target in INSTRUMENTS else None\n beamline = target if target in BEAMLINES else None\n \n if beamline is None:\n beamline = get_beamline(instrument)\n \n pvname = get_pvname_reprate(instrument, beamline)\n \n> beamline = beamline.capitalize()\nE AttributeError: 'NoneType' object has no attribute 'capitalize'\n\nslic/utils/reprate.py:70: AttributeError"}, "teardown": {"duration": 0.00016421126201748848, "outcome": "passed"}}], "warnings": [{"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}, {"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}]} \ No newline at end of file diff --git a/markdown/runtime_params.json b/markdown/runtime_params.json index 0637a088a..ad2851f51 100644 --- a/markdown/runtime_params.json +++ b/markdown/runtime_params.json @@ -1 +1,226 @@ -[] \ No newline at end of file +[ + { + "nodeid": "tests/test_utils_reprate.py::test_get_beamline[alvra-aramis]", + "callspec": { + "params": { + "instrument": "alvra", + "expected_beamline": "aramis" + }, + "id": "alvra-aramis" + } + }, + { + "nodeid": "tests/test_utils_reprate.py::test_get_beamline[bernina-aramis]", + "callspec": { + "params": { + "instrument": "bernina", + "expected_beamline": "aramis" + }, + "id": "bernina-aramis" + } + }, + { + "nodeid": "tests/test_utils_reprate.py::test_get_beamline[cristallina-aramis]", + "callspec": { + "params": { + "instrument": "cristallina", + "expected_beamline": "aramis" + }, + "id": "cristallina-aramis" + } + }, + { + "nodeid": "tests/test_utils_reprate.py::test_get_beamline[diavolezza-athos]", + "callspec": { + "params": { + "instrument": "diavolezza", + "expected_beamline": "athos" + }, + "id": "diavolezza-athos" + } + }, + { + "nodeid": "tests/test_utils_reprate.py::test_get_beamline[maloja-athos]", + "callspec": { + "params": { + "instrument": "maloja", + "expected_beamline": "athos" + }, + "id": "maloja-athos" + } + }, + { + "nodeid": "tests/test_utils_reprate.py::test_get_beamline[furka-athos]", + "callspec": { + "params": { + "instrument": "furka", + "expected_beamline": "athos" + }, + "id": "furka-athos" + } + }, + { + "nodeid": "tests/test_utils_reprate.py::test_get_pvname_reprate_for_inferred_beamline", + "callspec": null + }, + { + "nodeid": "tests/test_utils_reprate.py::test_infer_beamline_from_ip[129.129.242-alvra]", + "callspec": { + "params": { + "ip": "129.129.242", + "expected_instrument": "alvra" + }, + "id": "129.129.242-alvra" + } + }, + { + "nodeid": "tests/test_utils_reprate.py::test_infer_beamline_from_ip[129.129.243-bernina]", + "callspec": { + "params": { + "ip": "129.129.243", + "expected_instrument": "bernina" + }, + "id": "129.129.243-bernina" + } + }, + { + "nodeid": "tests/test_utils_reprate.py::test_infer_beamline_from_ip[129.129.244-cristallina]", + "callspec": { + "params": { + "ip": "129.129.244", + "expected_instrument": "cristallina" + }, + "id": "129.129.244-cristallina" + } + }, + { + "nodeid": "tests/test_utils_reprate.py::test_infer_beamline_from_ip[129.129.245-diavolezza]", + "callspec": { + "params": { + "ip": "129.129.245", + "expected_instrument": "diavolezza" + }, + "id": "129.129.245-diavolezza" + } + }, + { + "nodeid": "tests/test_utils_reprate.py::test_infer_beamline_from_ip[129.129.246-maloja]", + "callspec": { + "params": { + "ip": "129.129.246", + "expected_instrument": "maloja" + }, + "id": "129.129.246-maloja" + } + }, + { + "nodeid": "tests/test_utils_reprate.py::test_infer_beamline_from_ip[129.129.247-furka]", + "callspec": { + "params": { + "ip": "129.129.247", + "expected_instrument": "furka" + }, + "id": "129.129.247-furka" + } + }, + { + "nodeid": "tests/test_utils_reprate.py::test_get_pvname_reprate_with_instrument_and_beamline[alvra-aramis-SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB]", + "callspec": { + "params": { + "instrument": "alvra", + "beamline": "aramis", + "pvname": "SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB" + }, + "id": "alvra-aramis-SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB" + } + }, + { + "nodeid": "tests/test_utils_reprate.py::test_get_pvname_reprate_with_instrument_and_beamline[bernina-aramis-SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB]", + "callspec": { + "params": { + "instrument": "bernina", + "beamline": "aramis", + "pvname": "SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB" + }, + "id": "bernina-aramis-SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB" + } + }, + { + "nodeid": "tests/test_utils_reprate.py::test_get_pvname_reprate_with_instrument_and_beamline[cristallina-aramis-SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB]", + "callspec": { + "params": { + "instrument": "cristallina", + "beamline": "aramis", + "pvname": "SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB" + }, + "id": "cristallina-aramis-SIN-TIMAST-TMA:Bunch-1-Exp-Freq-RB" + } + }, + { + "nodeid": "tests/test_utils_reprate.py::test_get_pvname_reprate_with_instrument_and_beamline[diavolezza-athos-SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB]", + "callspec": { + "params": { + "instrument": "diavolezza", + "beamline": "athos", + "pvname": "SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB" + }, + "id": "diavolezza-athos-SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB" + } + }, + { + "nodeid": "tests/test_utils_reprate.py::test_get_pvname_reprate_with_instrument_and_beamline[maloja-athos-SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB]", + "callspec": { + "params": { + "instrument": "maloja", + "beamline": "athos", + "pvname": "SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB" + }, + "id": "maloja-athos-SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB" + } + }, + { + "nodeid": "tests/test_utils_reprate.py::test_get_pvname_reprate_with_instrument_and_beamline[furka-athos-SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB]", + "callspec": { + "params": { + "instrument": "furka", + "beamline": "athos", + "pvname": "SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB" + }, + "id": "furka-athos-SIN-TIMAST-TMA:Bunch-2-Exp-Freq-RB" + } + }, + { + "nodeid": "tests/test_utils_reprate.py::test_invalid_instrument_or_beamline", + "callspec": null + }, + { + "nodeid": "tests/test_utils_reprate.py::test_monitor_value_update", + "callspec": null + }, + { + "nodeid": "tests/test_utils_reprate.py::test_repr_method_with_initial_values", + "callspec": null + }, + { + "nodeid": "tests/test_utils_reprate.py::test_invalid_target_handling[invalid_instrument]", + "callspec": { + "params": { + "invalid_target": "invalid_instrument" + }, + "id": "invalid_instrument" + } + }, + { + "nodeid": "tests/test_utils_reprate.py::test_invalid_target_handling[non_existing_beamline]", + "callspec": { + "params": { + "invalid_target": "non_existing_beamline" + }, + "id": "non_existing_beamline" + } + }, + { + "nodeid": "tests/test_utils_reprate.py::test_retrieve_pvname_for_none_instrument_and_beamline", + "callspec": null + } +] \ No newline at end of file