From d1c0d7cbe4f6475ed64721a1eb675f31761abd1a Mon Sep 17 00:00:00 2001 From: Alex Heye Date: Mon, 21 Mar 2022 23:33:18 +0000 Subject: [PATCH] Add a pause between slurm srun tests --- tools/cloud-build/daily-tests/slurm-tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/cloud-build/daily-tests/slurm-tests.yml b/tools/cloud-build/daily-tests/slurm-tests.yml index f2ce75131e..9510f205b5 100644 --- a/tools/cloud-build/daily-tests/slurm-tests.yml +++ b/tools/cloud-build/daily-tests/slurm-tests.yml @@ -35,9 +35,9 @@ loop: "{{ stat_mounts.results }}" - name: Test Mounts on partitions - command: srun -N 1 ls -laF {{ mounts | join(' ') }} + shell: srun -N 1 ls -laF {{ mounts | join(' ') }} && sleep 120 loop: "{{ partitions }}" - name: Test partitions with hostname - command: srun -N 2 --partition {{ item }} hostname + shell: srun -N 2 --partition {{ item }} hostname && sleep 120 loop: "{{ partitions }}"