From 36f45b5742e9e096f5b8d78d61364bad99a745ae Mon Sep 17 00:00:00 2001 From: knave Date: Wed, 28 May 2025 12:23:59 +0800 Subject: [PATCH] tests: verify one by one to avoid timeout --- internal/controller/gpupool_controller_test.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/internal/controller/gpupool_controller_test.go b/internal/controller/gpupool_controller_test.go index 52a2a9d..bfbfd72 100644 --- a/internal/controller/gpupool_controller_test.go +++ b/internal/controller/gpupool_controller_test.go @@ -130,7 +130,8 @@ var _ = Describe("GPUPool Controller", func() { Build() updateRollingUpdatePolicy(tfEnv, true, 50, "3s") newHash, _ := triggerHypervisorUpdate(tfEnv) - verifyAllHypervisorPodHash(tfEnv, newHash) + verifyHypervisorPodHash(tfEnv.GetGPUNode(0, 0), newHash) + verifyHypervisorPodHash(tfEnv.GetGPUNode(0, 1), newHash) verifyHypervisorUpdateProgress(tfEnv, 100) tfEnv.Cleanup() })