Skip to content

Commit

Permalink
Refs #20650: Adjust timeouts
Browse files Browse the repository at this point in the history
Signed-off-by: JesusPoderoso <[email protected]>
  • Loading branch information
JesusPoderoso committed Jun 13, 2024
1 parent 5669527 commit 29b2f6c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions test/examples/test_configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def test_configuration(pub_args, sub_args):
out = subprocess.check_output(command_prerequisites + '@DOCKER_EXECUTABLE@ compose -f configuration.compose.yml up',
stderr=subprocess.STDOUT,
shell=True,
timeout=40
timeout=20
)
render_out = out.decode().split('\n')

Expand Down Expand Up @@ -134,7 +134,7 @@ def test_configuration_expected_output(pub_args, sub_args, expected_message, n_m
out = subprocess.check_output(command_prerequisites + '@DOCKER_EXECUTABLE@ compose -f configuration.compose.yml up',
stderr=subprocess.STDOUT,
shell=True,
timeout=30
timeout=20
)
render_out = out.decode().split('\n')

Expand Down
2 changes: 1 addition & 1 deletion test/examples/test_delivery_mechanisms.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def test_delivery_mechanisms(pub_args, sub_args, repetitions):
out = subprocess.check_output(command_prerequisites + '@DOCKER_EXECUTABLE@ compose -f delivery_mechanisms.compose.yml up',
stderr=subprocess.STDOUT,
shell=True,
timeout=60 # TCP requires higher timeout
timeout=20
).decode().split('\n')

sent = 0
Expand Down
2 changes: 1 addition & 1 deletion test/examples/test_hello_world.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ def test_hello_world():
'@DOCKER_EXECUTABLE@ compose -f hello_world.compose.yml up',
stderr=subprocess.STDOUT,
shell=True,
timeout=30
timeout=20
).decode().split('\n')

sent = 0
Expand Down

0 comments on commit 29b2f6c

Please sign in to comment.