Update tests/test_utils_pv.py
Run CI Tests / test (push) Successful in 1m50s

This commit is contained in:
2025-08-05 16:51:28 +02:00
parent 825b2b68ad
commit 4604f180a7
+4 -1
View File
@@ -31,7 +31,7 @@ def run_test_ioc():
thread = threading.Thread(target=start_ioc, daemon=True)
thread.start()
time.sleep(2.0) # Give the IOC time to come up
time.sleep(4.0) # Give the IOC time to come up
yield
@@ -56,6 +56,9 @@ def test_put_with_progress_and_repr(capture_stdout, value, expected_bar, expecte
# Use the custom PV class
pv = PV("TEST:VAL")
print("PV backend:", type(PV))
pv.wait_for_connection(timeout=2.0)
assert pv.connected