Skip to content

Commit

Permalink
Increased timeout on a few tests as they would infrequently fail from…
Browse files Browse the repository at this point in the history
… delay of test context.
  • Loading branch information
burkeds committed Aug 27, 2024
1 parent e8dfa71 commit 72d4d1d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tests/tango/test_tango_signals.py
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@ async def test_tango_signal_r(
proxy = await DeviceProxy(echo_device) if use_proxy else None
py_type = py_type if use_dtype else None

timeout = 0.1
timeout = 0.2
signal = tango_signal_r(
datatype=py_type,
read_trl=source,
Expand Down Expand Up @@ -519,7 +519,7 @@ async def test_tango_signal_w(
proxy = await DeviceProxy(echo_device) if use_proxy else None
py_type = py_type if use_dtype else None

timeout = 0.1
timeout = 0.2
signal = tango_signal_w(
datatype=py_type,
write_trl=source,
Expand Down Expand Up @@ -594,7 +594,7 @@ async def test_tango_signal_rw(
proxy = await DeviceProxy(echo_device) if use_proxy else None
py_type = py_type if use_dtype else None

timeout = 0.1
timeout = 0.2
signal = tango_signal_rw(
datatype=py_type,
read_trl=source,
Expand All @@ -617,7 +617,7 @@ async def test_tango_signal_rw(
@pytest.mark.parametrize("use_proxy", [True, False])
async def test_tango_signal_x(tango_test_device: str, use_proxy: bool):
proxy = await DeviceProxy(tango_test_device) if use_proxy else None
timeout = 0.1
timeout = 0.2
signal = tango_signal_x(
write_trl=tango_test_device + "/" + "clear",
device_proxy=proxy,
Expand Down Expand Up @@ -677,7 +677,7 @@ async def test_tango_signal_auto_attrs(
await prepare_device(echo_device, pv, initial_value)
source = echo_device + "/" + pv
proxy = await DeviceProxy(echo_device) if use_proxy else None
timeout = 0.1
timeout = 0.2

async def _test_signal(dtype, proxy):
signal = tango_signal_auto(
Expand Down Expand Up @@ -751,7 +751,7 @@ async def test_tango_signal_auto_cmds(
use_proxy: bool,
):
source = echo_device + "/" + pv
timeout = 0.1
timeout = 0.2

async def _test_signal(dtype, proxy):
signal = tango_signal_auto(
Expand Down

0 comments on commit 72d4d1d

Please sign in to comment.