Skip to content

Commit

Permalink
Update we2e comprehensive tests in srw_test script
Browse files Browse the repository at this point in the history
  • Loading branch information
Jesse McFarland committed Jul 28, 2022
1 parent aa97f2c commit e52ca97
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions .cicd/scripts/srw_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -54,16 +54,19 @@ we2e_comprehensive_tests=('grid_RRFS_CONUS_3km_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_
'grid_RRFS_CONUScompact_25km_ics_HRRR_lbcs_RAP_suite_HRRR'
'grid_RRFS_CONUScompact_13km_ics_HRRR_lbcs_RAP_suite_HRRR'
'grid_RRFS_CONUScompact_3km_ics_HRRR_lbcs_RAP_suite_HRRR'
)
'grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_FV3GFS_suite_RRFS_v1beta'
'grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_FV3GFS_suite_HRRR'
'grid_RRFS_CONUS_13km_ics_FV3GFS_lbcs_FV3GFS_suite_RRFS_v1beta'
'grid_RRFS_CONUS_13km_ics_FV3GFS_lbcs_FV3GFS_suite_HRRR'
'grid_RRFS_CONUS_3km_ics_FV3GFS_lbcs_FV3GFS_suite_RRFS_v1beta'
'grid_RRFS_CONUS_3km_ics_FV3GFS_lbcs_FV3GFS_suite_HRRR')

# The set of workflow tests to run.
declare -a we2e_workflow_tests
we2e_workflow_tests=('community_ensemble_008mems'
'community_ensemble_2mems'
'deactivate_tasks'
'inline_post'
'MET_ensemble_verification'
'MET_verification'
'custom_ESGgrid'
'custom_GFDLgrid'
'custom_GFDLgrid__GFDLgrid_USE_GFDLgrid_RES_IN_FILENAMES_eq_FALSE'
Expand All @@ -79,7 +82,8 @@ we2e_workflow_tests=('community_ensemble_008mems'
declare -a we2e_tests
we2e_tests=("${we2e_fundamental_tests[@]}")
if "${SRW_WE2E_COMPREHENSIVE_TESTS}"; then
we2e_tests+=("${we2e_comprehensive_tests[@]}" "${we2e_workflow_tests[@]}")
we2e_tests+=("${we2e_comprehensive_tests[@]}"
"${we2e_workflow_tests[@]}")

# Add additional tests for Hera.
if [[ "${platform}" == 'hera' ]]; then
Expand All @@ -88,7 +92,9 @@ if "${SRW_WE2E_COMPREHENSIVE_TESTS}"; then

# Add additional tests for all platforms, except Gaea and Parallel Works.
if [[ "${platform}" != 'gaea' && "${platform}" != 'noaacloud' ]]; then
we2e_tests+=('pregen_grid_orog_sfc_climo')
we2e_tests+=('pregen_grid_orog_sfc_climo'
'MET_ensemble_verification'
'MET_verification')
fi
fi

Expand Down

0 comments on commit e52ca97

Please sign in to comment.