Skip to content

Commit d674d23

Browse files
authored
Merge pull request #1059 from xylar/remove-qu480-test
Remove the QU480 test from the test suite
2 parents 24058d9 + 4e32f1f commit d674d23

File tree

4 files changed

+5
-24
lines changed

4 files changed

+5
-24
lines changed

suite/run_dev_suite.bash

+1-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ py=3.11
3030
./suite/setup.py -p ${py} -r main_vs_ctrl -b ${branch} -e ${env_name}
3131
./suite/setup.py -p ${py} -r no_polar_regions -b ${branch} --no_polar_regions -e ${env_name}
3232
./suite/setup.py -p ${py} -r mesh_rename -b ${branch} -e ${env_name}
33-
./suite/setup.py -p ${py} -r QU480 -b ${branch} -e ${env_name}
3433

3534
# submit the jobs
3635
cd ${machine}_test_suite
@@ -47,7 +46,7 @@ sbatch --dependency=afterok:${RES##* } --kill-on-invalid-dep=yes job_script.bash
4746
cd ..
4847

4948
for run in wc_defaults moc_am no_ncclimo no_polar_regions \
50-
mesh_rename QU480
49+
mesh_rename
5150
do
5251
cd ${run}
5352
echo ${run}

suite/run_e3sm_unified_suite.bash

-10
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,3 @@ do
4141
done
4242

4343
cd ..
44-
45-
# only LCRC machines have a separate QU480 run
46-
if [[ "$machine" == "anvil" || "$machine" == "chrysalis" ]]
47-
then
48-
./suite/setup.py -p ${py} -r QU480 -b ${branch}
49-
cd ${machine}_test_suite/QU480
50-
echo QU480
51-
sbatch job_script.bash
52-
cd ../..
53-
fi

suite/run_suite.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ sbatch --dependency=afterok:${RES##* } --kill-on-invalid-dep=yes job_script.bash
7878
cd ..
7979

8080
for run in main_py${alt_py} wc_defaults moc_am no_ncclimo no_polar_regions \
81-
mesh_rename xarray_main QU480
81+
mesh_rename xarray_main
8282
do
8383
cd ${run}
8484
echo ${run}

suite/setup.py

+3-11
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,8 @@ def main():
5050
web_section = machine_info.config['web_portal']
5151
web_base = os.path.join(web_section['base_path'], web_section['username'])
5252
html_base = f'{web_base}/analysis_testing'
53-
if args.run == 'QU480':
54-
simulation = '20200305.A_WCYCL1850.ne4_oQU480.anvil'
55-
mesh = 'QU480'
56-
else:
57-
simulation = '20240718.GMPAS-IAF-PISMF.T62_oQU240wLI.chrysalis'
58-
mesh = 'oQU240wLI'
53+
simulation = '20240718.GMPAS-IAF-PISMF.T62_oQU240wLI.chrysalis'
54+
mesh = 'oQU240wLI'
5955
if machine in ['anvil', 'chrysalis']:
6056
input_base = '/lcrc/group/e3sm/public_html/diagnostics/mpas_analysis/example_simulations'
6157
output_base = f'/lcrc/group/e3sm/{username}/analysis_testing'
@@ -94,11 +90,7 @@ def main():
9490
pass
9591
shutil.copytree(os.path.join('docs', '_build', 'html'), docs_path)
9692

97-
if mesh == 'QU480':
98-
generate = "['all', 'no_BGC', 'no_icebergs', 'no_index', 'no_eke',\n" \
99-
" 'no_landIceCavities', 'no_waves']"
100-
end_year = '5'
101-
elif mesh == 'oQU240wLI':
93+
if mesh == 'oQU240wLI':
10294
generate = "['all', 'no_BGC', 'no_icebergs', 'no_index', 'no_eke', " \
10395
"'no_waves']"
10496
end_year = '10'

0 commit comments

Comments
 (0)