fixed xilinx. python left
Build on RHEL9 docker image / build (push) Failing after 29s
Build on RHEL8 docker image / build (push) Failing after 34s

This commit is contained in:
2026-03-11 16:45:02 +01:00
parent 297e23d1d2
commit 951304c39c
6 changed files with 139 additions and 102 deletions
+24
View File
@@ -438,6 +438,30 @@ def test_v_limit(session_simulator, request):
Log(LogLevel.INFOGREEN, f"{request.node.name} passed")
@pytest.mark.detectorintegration
def test_v_abcd(session_simulator, request):
"""Test v_a, v_b, v_c, v_d, v_io are deprecated comands."""
det_type, num_interfaces, num_mods, d = session_simulator
assert d is not None
with pytest.raises(Exception):
d.v_a
with pytest.raises(Exception):
d.v_b
with pytest.raises(Exception):
d.v_c
with pytest.raises(Exception):
d.v_d
with pytest.raises(Exception):
d.v_io
Log(LogLevel.INFOGREEN, f"{request.node.name} passed")
'''
@pytest.mark.detectorintegration
def test_dac(session_simulator, request):