From bf61ad15b5c01b081c67e02301449877d1cb6d78 Mon Sep 17 00:00:00 2001 From: Venita Hagerty <38571614+venitahagerty@users.noreply.github.com> Date: Wed, 14 Jul 2021 13:09:25 -0600 Subject: [PATCH 01/16] Created a hello world automation --- .github/simple.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/simple.yml diff --git a/.github/simple.yml b/.github/simple.yml new file mode 100644 index 000000000..b12ae639d --- /dev/null +++ b/.github/simple.yml @@ -0,0 +1,26 @@ +name: Shell Commands + +on: + push: + branches: [rrfs_ci_simple] + workflow_dispatch: + + defaults: + run: + shell: bash -leo pipefail {0} + +jobs: + run-shell-command: + runs-on: ubuntu-latest + steps: + - name: echo a string + run: echo "Hello World" + - name: multiline script + run: | + node -v + pwd + - name: python command + run: | + import platform + print (platform.processor()) + shell: python From bc809a3538ef9b0f94b18fda5545defc38fb79f6 Mon Sep 17 00:00:00 2001 From: Venita Hagerty <38571614+venitahagerty@users.noreply.github.com> Date: Wed, 14 Jul 2021 13:11:37 -0600 Subject: [PATCH 02/16] Created hello world automation in correct folder --- .github/workflows/simple.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/simple.yml diff --git a/.github/workflows/simple.yml b/.github/workflows/simple.yml new file mode 100644 index 000000000..b12ae639d --- /dev/null +++ b/.github/workflows/simple.yml @@ -0,0 +1,26 @@ +name: Shell Commands + +on: + push: + branches: [rrfs_ci_simple] + workflow_dispatch: + + defaults: + run: + shell: bash -leo pipefail {0} + +jobs: + run-shell-command: + runs-on: ubuntu-latest + steps: + - name: echo a string + run: echo "Hello World" + - name: multiline script + run: | + node -v + pwd + - name: python command + run: | + import platform + print (platform.processor()) + shell: python From 939f8c9d266fd112ed3089d3280eb7c6f4388f28 Mon Sep 17 00:00:00 2001 From: Venita Hagerty <38571614+venitahagerty@users.noreply.github.com> Date: Wed, 14 Jul 2021 13:13:54 -0600 Subject: [PATCH 03/16] fixed indentation error --- .github/workflows/simple.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/simple.yml b/.github/workflows/simple.yml index b12ae639d..065c77137 100644 --- a/.github/workflows/simple.yml +++ b/.github/workflows/simple.yml @@ -5,7 +5,7 @@ on: branches: [rrfs_ci_simple] workflow_dispatch: - defaults: +defaults: run: shell: bash -leo pipefail {0} From 2113079e63a49ce94b3f29528ac6c9619d229948 Mon Sep 17 00:00:00 2001 From: Venita Hagerty <38571614+venitahagerty@users.noreply.github.com> Date: Wed, 14 Jul 2021 13:15:43 -0600 Subject: [PATCH 04/16] Created in wrong directory --- .github/simple.yml | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 .github/simple.yml diff --git a/.github/simple.yml b/.github/simple.yml deleted file mode 100644 index b12ae639d..000000000 --- a/.github/simple.yml +++ /dev/null @@ -1,26 +0,0 @@ -name: Shell Commands - -on: - push: - branches: [rrfs_ci_simple] - workflow_dispatch: - - defaults: - run: - shell: bash -leo pipefail {0} - -jobs: - run-shell-command: - runs-on: ubuntu-latest - steps: - - name: echo a string - run: echo "Hello World" - - name: multiline script - run: | - node -v - pwd - - name: python command - run: | - import platform - print (platform.processor()) - shell: python From 29ac286e16f439c101096c0dad615ba54f337809 Mon Sep 17 00:00:00 2001 From: Venita Hagerty <38571614+venitahagerty@users.noreply.github.com> Date: Thu, 16 Sep 2021 08:30:48 -0600 Subject: [PATCH 05/16] Add end to end test script. (#179) (#204) * Add end to end tests for Hera * Update end to end script * Update CODEOWNERS to the team working on the rrfs_ci branch * Modify and use APP_DIR variable instead of BRANCH_DIR_NAME to exclude using branch name at the end of the repo directory * Change executable permissions to end_to_end_tests.sh * Moving script consistent with new dir. * Remove old script. * Clean up a few minor things. * Update TESTS_DIR to point to the correct directory Co-authored-by: Christina Holt <56881914+christinaholtNOAA@users.noreply.github.com> Co-authored-by: Christina Holt Co-authored-by: Rob Gonzalez-Pita Co-authored-by: Christina Holt <56881914+christinaholtNOAA@users.noreply.github.com> Co-authored-by: Christina Holt --- .github/CODEOWNERS | 14 +---- tests/WE2E/end_to_end_tests.sh | 97 ++++++++++++++++++++++++++++++++++ ush/launch_FV3LAM_wflow.sh | 14 +++++ 3 files changed, 113 insertions(+), 12 deletions(-) create mode 100755 tests/WE2E/end_to_end_tests.sh diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 40196de74..760e0cefb 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1,14 +1,4 @@ -# Lines starting with '#' are comments. -# Each line is a file pattern followed by one or more owners. -# These owners will be the default owners for everything in the repo. -#* @defunkt -* @JulieSchramm @mkavulich @gsketefian @JeffBeck-NOAA @RatkoVasic-NOAA @BenjaminBlake-NOAA +# These owners will be the default owners for the rrfs_ci branch of this repo. +* @robgonzalezpita @christopherwharrop-noaa @christinaholtNOAA @venitahagerty -# Order is important. The last matching pattern has the most precedence. -# So if a pull request only touches javascript files, only these owners -# will be requested to review. -#*.js @octocat @github/js - -# You can also use email addresses if you prefer. -#docs/* docs@example.com diff --git a/tests/WE2E/end_to_end_tests.sh b/tests/WE2E/end_to_end_tests.sh new file mode 100755 index 000000000..3491ac3b5 --- /dev/null +++ b/tests/WE2E/end_to_end_tests.sh @@ -0,0 +1,97 @@ +#!/bin/bash -l + +#---------------------------------------------------------------------- +# Automation of UFS Short Range Weather App Worfklow End to End Tests. +# +# The script is dependant on a successful build of this repo using the +# test/build.sh script in the ufs-srweather-app repository. +# The UFS build must be completed in a particular manner for this +# script to function properly, notably the location of the build and +# bin directories: +# BUILD_DIR=${APP_DIR}/build_${compiler} +# BIN_DIR=${APP_DIR}/bin_${compiler} +# +# With the creating of a test_log directory and output files describing +# the result of each workflow status, a testing framework is established. +# The user must verify the contents of each experiment file in test_log/ +# to check workflow success or failure. +# +# Example: ./end_to_end_tests.sh hera zrtrr +#---------------------------------------------------------------------- + +#----------------------------------------------------------------------- +# Set variables +#----------------------------------------------------------------------- + +branches=( rrfs_ci ) + +function usage { + echo + echo "Usage: $0 machine slurm_account | -h" + echo + echo " machine [required] is one of: ${machines[@]}" + echo " slurm_account [required] case sensitive name of the user-specific slurm account" + echo " -h display this help" + echo + exit 1 + +} + +machines=( hera ) + +if [ "$1" = "-h" ] ; then usage ; fi +[[ $# -le 1 ]] && usage + +export machine=$1 +machine=$(echo "${machine}" | tr '[A-Z]' '[a-z]') # scripts in sorc need lower case machine name + +export account=$2 + +#----------------------------------------------------------------------- +# Choose experiment. +#----------------------------------------------------------------------- + +expts=( grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_FV3GFS_suite_GSD_SAR ) + +#----------------------------------------------------------------------- +# Set directories +#----------------------------------------------------------------------- + +scrfunc_fp=$( readlink -f "${BASH_SOURCE[0]}" ) +scrfunc_fn=$( basename "${scrfunc_fp}" ) +scrfunc_dir=$( dirname "${scrfunc_fp}" ) + +TESTS_DIR=$( dirname "${scrfunc_dir}" ) +REGIONAL_WORKFLOW_DIR=$( dirname "${TESTS_DIR}" ) +SRW_APP_DIR=$( dirname "${REGIONAL_WORKFLOW_DIR}" ) +TOP_DIR=$( dirname "${SRW_APP_DIR}" ) + +#BRANCH_DIR_NAME=ufs-srweather-app-${branches} +APP_DIR=${TOP_DIR}/ufs-srweather-app +EXPTS_DIR=${TOP_DIR}/expt_dirs + +#---------------------------------------------------------------------- +# Temporary fix to set EXECDIR in setup.sh appropriately. +#---------------------------------------------------------------------- + +sed -i 's|EXECDIR="${SR_WX_APP_TOP_DIR}/bin"|EXECDIR="${SR_WX_APP_TOP_DIR}/bin_intel/bin"|g' "${REGIONAL_WORKFLOW_DIR}/ush/setup.sh" + +#----------------------------------------------------------------------- +# Run E2E Tests +#----------------------------------------------------------------------- + +# Load Python Modules +cmd="${APP_DIR}/env/wflow_${machine}.env" +source ${cmd} + +echo "-- Load environment =>" $cmd + +# If experiments list file exists, remove it, and add the experiemnts to a new expts list file +auto_file="auto_expts_list.txt" + +rm -rf ${auto_file} +echo ${expts} > ${auto_file} + +# Run the E2E Workflow tests +./run_WE2E_tests.sh tests_file=${auto_file} machine=${machine} account=${account} + diff --git a/ush/launch_FV3LAM_wflow.sh b/ush/launch_FV3LAM_wflow.sh index 453db87d3..3678d0a5c 100755 --- a/ush/launch_FV3LAM_wflow.sh +++ b/ush/launch_FV3LAM_wflow.sh @@ -372,6 +372,20 @@ status): expt_name = \"${expt_name}\" wflow_status = \"${wflow_status}\" " + +# +# Additions for RRFS_CI E2E Tests: +# +RRFS_DIR=$(dirname "${scrfunc_dir}") +TESTS_DIR=${RRFS_DIR}/tests +TESTS_LOG_DIR=${TESTS_DIR}/test_log + +if [ ! -d "${TESTS_LOG_DIR}" ] ; then + mkdir -p ${TESTS_LOG_DIR} +fi + +echo ${expt_name} : ${wflow_status} >> ${TESTS_LOG_DIR}/${expt_name} + # # If a cron job was being used to periodically relaunch the workflow, we # now remove the entry in the crontab corresponding to the workflow be- From dbaccbd17cf38c4e988f79f070a9a924a999463a Mon Sep 17 00:00:00 2001 From: Venita Hagerty <38571614+venitahagerty@users.noreply.github.com> Date: Fri, 8 Oct 2021 13:26:55 -0600 Subject: [PATCH 06/16] Changed a directory from fim (did not exist) to gsd-fv3 --- tests/WE2E/run_WE2E_tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/WE2E/run_WE2E_tests.sh b/tests/WE2E/run_WE2E_tests.sh index 3ca9a2c01..ba06f4448 100755 --- a/tests/WE2E/run_WE2E_tests.sh +++ b/tests/WE2E/run_WE2E_tests.sh @@ -938,7 +938,7 @@ PTMP=\"${PTMP}\"" elif [ "$MACHINE" = "HERA" ]; then extrn_mdl_source_basedir="/scratch2/BMC/det/Gerard.Ketefian/UFS_CAM/staged_extrn_mdl_files" elif [ "$MACHINE" = "JET" ]; then - extrn_mdl_source_basedir="/mnt/lfs1/BMC/fim/Gerard.Ketefian/UFS_CAM/staged_extrn_mdl_files" + extrn_mdl_source_basedir="/mnt/lfs1/BMC/gsd-fv3/Gerard.Ketefian/UFS_CAM/staged_extrn_mdl_files" elif [ "$MACHINE" = "CHEYENNE" ]; then extrn_mdl_source_basedir="/glade/p/ral/jntp/UFS_SRW_app/staged_extrn_mdl_files" elif [ "$MACHINE" = "ORION" ]; then From cea1f22ef26d0d7e304d4f4b36a5baa43d7fbfbc Mon Sep 17 00:00:00 2001 From: Venita Hagerty <38571614+venitahagerty@users.noreply.github.com> Date: Mon, 1 Nov 2021 11:50:22 -0600 Subject: [PATCH 07/16] Added a second experiment --- tests/WE2E/end_to_end_tests.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/WE2E/end_to_end_tests.sh b/tests/WE2E/end_to_end_tests.sh index 3491ac3b5..07cb6a373 100755 --- a/tests/WE2E/end_to_end_tests.sh +++ b/tests/WE2E/end_to_end_tests.sh @@ -51,7 +51,8 @@ export account=$2 # Choose experiment. #----------------------------------------------------------------------- -expts=( grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_FV3GFS_suite_GSD_SAR ) +expts=( grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_FV3GFS_suite_GSD_SAR, + grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_v16) #----------------------------------------------------------------------- # Set directories From 6d6b38670a328e9bfcc6fd40fb92f9950c2dd20a Mon Sep 17 00:00:00 2001 From: Venita Hagerty <38571614+venitahagerty@users.noreply.github.com> Date: Mon, 1 Nov 2021 13:19:20 -0600 Subject: [PATCH 08/16] Removed comma between 2 test names --- tests/WE2E/end_to_end_tests.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/WE2E/end_to_end_tests.sh b/tests/WE2E/end_to_end_tests.sh index 07cb6a373..9d538d01a 100755 --- a/tests/WE2E/end_to_end_tests.sh +++ b/tests/WE2E/end_to_end_tests.sh @@ -51,8 +51,7 @@ export account=$2 # Choose experiment. #----------------------------------------------------------------------- -expts=( grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_FV3GFS_suite_GSD_SAR, - grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_v16) +expts=( grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_FV3GFS_suite_GSD_SAR grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_v16) #----------------------------------------------------------------------- # Set directories From d7a99be8705103ce00fb0f3b7d081ae7b0d7ecff Mon Sep 17 00:00:00 2001 From: Venita Hagerty <38571614+venitahagerty@users.noreply.github.com> Date: Tue, 2 Nov 2021 08:58:11 -0600 Subject: [PATCH 09/16] Changed syntax for expts to get multiple lines --- tests/WE2E/end_to_end_tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/WE2E/end_to_end_tests.sh b/tests/WE2E/end_to_end_tests.sh index 9d538d01a..6b54ded1a 100755 --- a/tests/WE2E/end_to_end_tests.sh +++ b/tests/WE2E/end_to_end_tests.sh @@ -51,7 +51,7 @@ export account=$2 # Choose experiment. #----------------------------------------------------------------------- -expts=( grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_FV3GFS_suite_GSD_SAR grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_v16) +expts=("grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_FV3GFS_suite_GSD_SAR\ngrid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_v16") #----------------------------------------------------------------------- # Set directories From d22be66597d200942c45da914fb41693fb0e365d Mon Sep 17 00:00:00 2001 From: Venita Hagerty <38571614+venitahagerty@users.noreply.github.com> Date: Tue, 2 Nov 2021 10:53:43 -0600 Subject: [PATCH 10/16] Added -e option to echos of expt name file --- tests/WE2E/end_to_end_tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/WE2E/end_to_end_tests.sh b/tests/WE2E/end_to_end_tests.sh index 6b54ded1a..9e1d86adf 100755 --- a/tests/WE2E/end_to_end_tests.sh +++ b/tests/WE2E/end_to_end_tests.sh @@ -90,7 +90,7 @@ echo "-- Load environment =>" $cmd auto_file="auto_expts_list.txt" rm -rf ${auto_file} -echo ${expts} > ${auto_file} +echo -e ${expts} > ${auto_file} # Run the E2E Workflow tests ./run_WE2E_tests.sh tests_file=${auto_file} machine=${machine} account=${account} From a87e44ad140d73f9cc07a6e43053b580246e38fb Mon Sep 17 00:00:00 2001 From: Venita Hagerty Date: Wed, 16 Feb 2022 15:29:55 -0700 Subject: [PATCH 11/16] removed old end_to_end_tests.sh --- tests/WE2E/end_to_end_tests.sh | 97 ---------------------------------- 1 file changed, 97 deletions(-) delete mode 100755 tests/WE2E/end_to_end_tests.sh diff --git a/tests/WE2E/end_to_end_tests.sh b/tests/WE2E/end_to_end_tests.sh deleted file mode 100755 index 9e1d86adf..000000000 --- a/tests/WE2E/end_to_end_tests.sh +++ /dev/null @@ -1,97 +0,0 @@ -#!/bin/bash -l - -#---------------------------------------------------------------------- -# Automation of UFS Short Range Weather App Worfklow End to End Tests. -# -# The script is dependant on a successful build of this repo using the -# test/build.sh script in the ufs-srweather-app repository. -# The UFS build must be completed in a particular manner for this -# script to function properly, notably the location of the build and -# bin directories: -# BUILD_DIR=${APP_DIR}/build_${compiler} -# BIN_DIR=${APP_DIR}/bin_${compiler} -# -# With the creating of a test_log directory and output files describing -# the result of each workflow status, a testing framework is established. -# The user must verify the contents of each experiment file in test_log/ -# to check workflow success or failure. -# -# Example: ./end_to_end_tests.sh hera zrtrr -#---------------------------------------------------------------------- - -#----------------------------------------------------------------------- -# Set variables -#----------------------------------------------------------------------- - -branches=( rrfs_ci ) - -function usage { - echo - echo "Usage: $0 machine slurm_account | -h" - echo - echo " machine [required] is one of: ${machines[@]}" - echo " slurm_account [required] case sensitive name of the user-specific slurm account" - echo " -h display this help" - echo - exit 1 - -} - -machines=( hera ) - -if [ "$1" = "-h" ] ; then usage ; fi -[[ $# -le 1 ]] && usage - -export machine=$1 -machine=$(echo "${machine}" | tr '[A-Z]' '[a-z]') # scripts in sorc need lower case machine name - -export account=$2 - -#----------------------------------------------------------------------- -# Choose experiment. -#----------------------------------------------------------------------- - -expts=("grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_FV3GFS_suite_GSD_SAR\ngrid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_v16") - -#----------------------------------------------------------------------- -# Set directories -#----------------------------------------------------------------------- - -scrfunc_fp=$( readlink -f "${BASH_SOURCE[0]}" ) -scrfunc_fn=$( basename "${scrfunc_fp}" ) -scrfunc_dir=$( dirname "${scrfunc_fp}" ) - -TESTS_DIR=$( dirname "${scrfunc_dir}" ) -REGIONAL_WORKFLOW_DIR=$( dirname "${TESTS_DIR}" ) -SRW_APP_DIR=$( dirname "${REGIONAL_WORKFLOW_DIR}" ) -TOP_DIR=$( dirname "${SRW_APP_DIR}" ) - -#BRANCH_DIR_NAME=ufs-srweather-app-${branches} -APP_DIR=${TOP_DIR}/ufs-srweather-app -EXPTS_DIR=${TOP_DIR}/expt_dirs - -#---------------------------------------------------------------------- -# Temporary fix to set EXECDIR in setup.sh appropriately. -#---------------------------------------------------------------------- - -sed -i 's|EXECDIR="${SR_WX_APP_TOP_DIR}/bin"|EXECDIR="${SR_WX_APP_TOP_DIR}/bin_intel/bin"|g' "${REGIONAL_WORKFLOW_DIR}/ush/setup.sh" - -#----------------------------------------------------------------------- -# Run E2E Tests -#----------------------------------------------------------------------- - -# Load Python Modules -cmd="${APP_DIR}/env/wflow_${machine}.env" -source ${cmd} - -echo "-- Load environment =>" $cmd - -# If experiments list file exists, remove it, and add the experiemnts to a new expts list file -auto_file="auto_expts_list.txt" - -rm -rf ${auto_file} -echo -e ${expts} > ${auto_file} - -# Run the E2E Workflow tests -./run_WE2E_tests.sh tests_file=${auto_file} machine=${machine} account=${account} - From 544673387bc426d590fa05cd4f288848c1777e02 Mon Sep 17 00:00:00 2001 From: Venita Hagerty <38571614+venitahagerty@users.noreply.github.com> Date: Tue, 15 Mar 2022 07:42:35 -0600 Subject: [PATCH 12/16] Add 5 additional tests to hera --- tests/WE2E/machine_suites/hera.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/WE2E/machine_suites/hera.txt b/tests/WE2E/machine_suites/hera.txt index 35b26e9b1..ea99ca538 100644 --- a/tests/WE2E/machine_suites/hera.txt +++ b/tests/WE2E/machine_suites/hera.txt @@ -1 +1,6 @@ +grid_GSD_HRRR_AK_50km_ics_RAP_lbcs_RAP_suite_GSD_SAR grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_FV3GFS_suite_GSD_SAR +grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_v15p2 +grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_v16 +grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_RAP_suite_HRRR +grid_RRFS_CONUS_25km_ics_GSMGFS_lbcs_GSMGFS_suite_GFS_v15p2 From 09f7bdea2c5ac5fcc337c68b553031d20a1917a6 Mon Sep 17 00:00:00 2001 From: Venita Hagerty <38571614+venitahagerty@users.noreply.github.com> Date: Wed, 16 Mar 2022 12:10:16 -0600 Subject: [PATCH 13/16] Added a 2nd test --- tests/WE2E/machine_suites/jet.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/WE2E/machine_suites/jet.txt b/tests/WE2E/machine_suites/jet.txt index 35b26e9b1..d519bb9fb 100644 --- a/tests/WE2E/machine_suites/jet.txt +++ b/tests/WE2E/machine_suites/jet.txt @@ -1 +1,2 @@ +grid_GSD_HRRR_AK_50km_ics_RAP_lbcs_RAP_suite_GSD_SAR grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_FV3GFS_suite_GSD_SAR From 4f69220c4ac57d985663696302e71b7d25e44031 Mon Sep 17 00:00:00 2001 From: Venita Hagerty <38571614+venitahagerty@users.noreply.github.com> Date: Wed, 16 Mar 2022 14:51:32 -0600 Subject: [PATCH 14/16] Added 4 more tests to jet --- tests/WE2E/machine_suites/jet.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/WE2E/machine_suites/jet.txt b/tests/WE2E/machine_suites/jet.txt index d519bb9fb..ea99ca538 100644 --- a/tests/WE2E/machine_suites/jet.txt +++ b/tests/WE2E/machine_suites/jet.txt @@ -1,2 +1,6 @@ grid_GSD_HRRR_AK_50km_ics_RAP_lbcs_RAP_suite_GSD_SAR grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_FV3GFS_suite_GSD_SAR +grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_v15p2 +grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_v16 +grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_RAP_suite_HRRR +grid_RRFS_CONUS_25km_ics_GSMGFS_lbcs_GSMGFS_suite_GFS_v15p2 From 09d0ef09d3cfa21a2e07a4bef8c554193b9faa1c Mon Sep 17 00:00:00 2001 From: Venita Hagerty <38571614+venitahagerty@users.noreply.github.com> Date: Thu, 17 Mar 2022 09:35:26 -0600 Subject: [PATCH 15/16] took out GSD_SAR tests on hera Added some tests listed in regional_workflow PR 697 --- tests/WE2E/machine_suites/hera.txt | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/tests/WE2E/machine_suites/hera.txt b/tests/WE2E/machine_suites/hera.txt index ea99ca538..d3c1391d2 100644 --- a/tests/WE2E/machine_suites/hera.txt +++ b/tests/WE2E/machine_suites/hera.txt @@ -1,6 +1,11 @@ -grid_GSD_HRRR_AK_50km_ics_RAP_lbcs_RAP_suite_GSD_SAR -grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_FV3GFS_suite_GSD_SAR grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_v15p2 grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_v16 grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_RAP_suite_HRRR grid_RRFS_CONUS_25km_ics_GSMGFS_lbcs_GSMGFS_suite_GFS_v15p2 +grid_RRFS_CONUS_25km_ics_HRRR_lbcs_RAP_suite_RRFS_v1alpha +grid_RRFS_CONUS_25km_ics_HRRR_lbcs_RAP_suite_RRFS_v1beta +grid_RRFS_CONUS_25km_ics_HRRR_lbcs_HRRR_suite_HRRR +nco_grid_RRFS_CONUS_25km_ics_HRRR_lbcs_RAP_suite_HRRR +get_from_HPSS_ics_HRRR_lbcs_RAP +get_from_HPSS_ics_RAP_lbcs_RAP +specify_DT_ATMOS_LAYOUT_XY_BLOCKSIZE From 5672bb7c08ad92d821623a03abfe09ffb807282e Mon Sep 17 00:00:00 2001 From: Venita Hagerty <38571614+venitahagerty@users.noreply.github.com> Date: Thu, 31 Mar 2022 10:37:50 -0600 Subject: [PATCH 16/16] adding back invalid test for testing --- tests/WE2E/machine_suites/jet.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/WE2E/machine_suites/jet.txt b/tests/WE2E/machine_suites/jet.txt index d3c1391d2..24069da86 100644 --- a/tests/WE2E/machine_suites/jet.txt +++ b/tests/WE2E/machine_suites/jet.txt @@ -1,3 +1,4 @@ +grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_FV3GFS_suite_GSD_SAR grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_v15p2 grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_FV3GFS_suite_GFS_v16 grid_RRFS_CONUS_25km_ics_FV3GFS_lbcs_RAP_suite_HRRR