Update tests/test_utils_hastepics.py
Run CI Tests / test (push) Successful in 3m9s

This commit is contained in:
2025-08-11 21:53:00 +02:00
parent 4259403497
commit dd4cef2015
+2 -2
View File
@@ -179,7 +179,7 @@ def test_speedup_motor_instantiation():
f"Motor custom ({fast_time:.6f}s) plus lent que EPICS.Motor ({slow_time:.6f}s)" f"Motor custom ({fast_time:.6f}s) plus lent que EPICS.Motor ({slow_time:.6f}s)"
) )
'''
def test_speedup_motor_PV(): def test_speedup_motor_PV():
# baseline EPICS # baseline EPICS
m_slow = Motor("TEST:SIM:M14") m_slow = Motor("TEST:SIM:M14")
@@ -200,7 +200,7 @@ def test_speedup_motor_PV():
assert fast_time <= slow_time, ( assert fast_time <= slow_time, (
f"Motor.PV custom ({fast_time:.6f}s) beaucoup plus lent que ({slow_time:.6f}s)" f"Motor.PV custom ({fast_time:.6f}s) beaucoup plus lent que ({slow_time:.6f}s)"
) )
'''
def test_motor_init_list_attrs_created(): def test_motor_init_list_attrs_created():
base_init = tuple(getattr(epics.Motor, "_init_list", ())) base_init = tuple(getattr(epics.Motor, "_init_list", ()))