From 0397219f3a6e1ab0c3cc16d1966fc740f4a1a149 Mon Sep 17 00:00:00 2001 From: Marcell Nagy Date: Thu, 28 Nov 2024 14:53:07 +0000 Subject: [PATCH] Surpress tango test logging --- tests/transport/tango/test_dsr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/transport/tango/test_dsr.py b/tests/transport/tango/test_dsr.py index 3fbe8931d..09646c379 100644 --- a/tests/transport/tango/test_dsr.py +++ b/tests/transport/tango/test_dsr.py @@ -10,7 +10,7 @@ class TestTangoDevice: def tango_context(self, assertable_controller): # https://tango-controls.readthedocs.io/projects/pytango/en/v9.5.1/testing/test_context.html device = TangoTransport(assertable_controller)._dsr._device - with DeviceTestContext(device) as proxy: + with DeviceTestContext(device, debug=0) as proxy: yield proxy def test_list_attributes(self, tango_context):