Skip to content

Commit dd16e76

Browse files
remove scutest
1 parent 130e729 commit dd16e76

File tree

2 files changed

+4
-11
lines changed

2 files changed

+4
-11
lines changed

pre/remap_restart/remap_command_line.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -81,11 +81,7 @@ def parse_args(program_description):
8181
p_command.add_argument('-qos', default="", help="slurm_pbs quality-of-service", choices=['', 'debug', 'allnccs', 'normal'])
8282
account = get_account()
8383
p_command.add_argument('-account', default=account, help="slurm_pbs account")
84-
85-
if (BUILT_ON_SLES15):
86-
p_command.add_argument('-partition', default='scutest',help="slurm_pbs partition")
87-
else:
88-
p_command.add_argument('-partition', default='', help="slurm_pbs partition")
84+
p_command.add_argument('-partition', default='', help="slurm_pbs partition")
8985

9086
p_command.add_argument('-rs', default='3', help="Flag indicating which restarts to regrid: 1 (upper air); 2 (surface); 3 (both)", choices=['1','2','3'])
9187

pre/remap_restart/remap_questions.py

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,9 @@ def echo_bcs(x,opt):
3737

3838
def default_partition(x):
3939
if x['slurm_pbs:qos'] == 'debug':
40-
if BUILT_ON_SLES15:
41-
x['slurm_pbs:partition'] = 'scutest'
42-
else:
43-
x['slurm_pbs:partition'] = 'compute'
44-
return False
45-
return True
40+
x['slurm_pbs:partition'] = 'compute'
41+
return False
42+
return True
4643

4744
def validate_merra2_time(text):
4845
if len(text) == 10 :

0 commit comments

Comments
 (0)