File tree Expand file tree Collapse file tree 2 files changed +15
-12
lines changed Expand file tree Collapse file tree 2 files changed +15
-12
lines changed Original file line number Diff line number Diff line change 267267 'builtin'
268268 ],
269269 'access' : [
270- '-Cgpu' ,
271- '--reservation=jupyter_gpu'
270+ f'-Cgpu' ,
271+ f'--reservation=jupyter_gpu' ,
272+ f'--account={ osext .osgroup ()} '
272273 ],
273274 'descr' : 'JupyterHub GPU nodes' ,
274275 'max_jobs' : 10 ,
281282 'builtin'
282283 ],
283284 'access' : [
284- '-Cmc' ,
285- '--reservation=jupyter_mc'
285+ f'-Cmc' ,
286+ f'--reservation=jupyter_mc' ,
287+ f'--account={ osext .osgroup ()} '
286288 ],
287289 'descr' : 'JupyterHub multicore nodes' ,
288290 'max_jobs' : 10 ,
404406 'builtin'
405407 ],
406408 'access' : [
407- '-Cgpu' ,
408- '--reservation=jupyter_gpu'
409+ f'-Cgpu' ,
410+ f'--reservation=jupyter_gpu' ,
411+ f'--account={ osext .osgroup ()} '
409412 ],
410413 'descr' : 'JupyterHub GPU nodes' ,
411414 'max_jobs' : 10 ,
418421 'builtin'
419422 ],
420423 'access' : [
421- '-Cmc' ,
422- '--reservation=jupyter_mc'
424+ f'-Cmc' ,
425+ f'--reservation=jupyter_mc' ,
426+ f'--account={ osext .osgroup ()} '
423427 ],
424428 'descr' : 'JupyterHub multicore nodes' ,
425429 'max_jobs' : 10 ,
Original file line number Diff line number Diff line change @@ -91,10 +91,9 @@ def __init__(self):
9191 self .executable = 'srun'
9292 self .executable_opts = ['-A' , osext .osgroup (), 'hostname' ]
9393 self .sanity_patterns = sn .assert_found (
94- r'error: You have to specify, at least, what sort of node you '
95- r'need: -C gpu for GPU enabled nodes, or -C mc for multicore '
96- r'nodes.|ERROR: you must specify -C with one of the following: '
97- r'mc,gpu,storage' , self .stderr )
94+ r'ERROR: you must specify -C with one of the following: mc,gpu' ,
95+ self .stderr
96+ )
9897
9998
10099@rfm .simple_test
You can’t perform that action at this time.
0 commit comments