Skip to content

Commit 9880270

Browse files
sinfo and scontrol checks removed
1 parent 3d63286 commit 9880270

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

cscs-checks/system/slurm/slurm_check.py

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,9 @@
99
import reframe.utility.sanity as sn
1010

1111

12-
# TODO: scontrol, do we want to scontrol something specific?
1312
@rfm.simple_test
1413
class SlurmCheck(rfm.RunOnlyRegressionTest):
15-
slurm_command = parameter(['squeue', 'sacct', 'sinfo', 'scontrol'])
14+
slurm_command = parameter(['squeue', 'sacct'])
1615

1716
def __init__(self):
1817
self.descr = 'Slurm command test'
@@ -30,18 +29,10 @@ def __init__(self):
3029
},
3130
'sacct': {
3231
'real_time': (0.1, None, 0.1, 's')
33-
},
34-
'sinfo': {
35-
'real_time': (0.02, None, 0.1, 's')
36-
},
37-
'scontrol': {
38-
'real_time': (0.01, None, 0.1, 's')
3932
}
4033
}
4134

4235
self.executable = 'time -p ' + self.slurm_command
43-
if self.slurm_command == 'scontrol':
44-
self.executable_opts = ['show partitions']
4536

4637
self.tags = {'ops', 'diagnostic', 'health'}
4738
self.maintainers = ['CB', 'VH']

0 commit comments

Comments
 (0)