From c6902dab0629408509681ea78124d7885049b358 Mon Sep 17 00:00:00 2001 From: Xingyao Wang Date: Fri, 17 Jan 2025 22:45:38 -0500 Subject: [PATCH] use a more reasonable tests --- tests/runtime/test_stress_remote_runtime.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/runtime/test_stress_remote_runtime.py b/tests/runtime/test_stress_remote_runtime.py index a7dc72d99ae4..6959bd3ac8f1 100644 --- a/tests/runtime/test_stress_remote_runtime.py +++ b/tests/runtime/test_stress_remote_runtime.py @@ -373,7 +373,9 @@ def test_stress_remote_runtime_long_output_with_soft_and_hard_timeout(): assert obs.exit_code == 0 # run stress-ng stress tests for 1 minute - action = CmdRunAction(command='stress-ng --all 1 -t 1m') + action = CmdRunAction( + command='stress-ng --cpu 4 --vm 2 --hdd 1 --fork 8 --timeout 1m --metrics' + ) action.set_hard_timeout(120) logger.info(action, extra={'msg_type': 'ACTION'}) obs = runtime.run_action(action)