Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow skipping tests that have a baseline already #4737

Merged
merged 16 commits into from
Jan 23, 2025
Merged
Show file tree
Hide file tree
Changes from 13 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# Migrated code style to Black
eabf877cbb86b281fdd37a3fa3cc0edf9b8eb874
321463922724b225988e517da54a18bad90bc316
6751504adf095d5d034e6406fbb0e914924aecff
27 changes: 25 additions & 2 deletions CIME/scripts/create_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -351,14 +351,32 @@ def parse_command_line(args, description):
config, "ALLOW_BASELINE_OVERWRITE", False, check_main=False
)

parser.add_argument(
default = get_default_setting(
config, "SKIP_TESTS_WITH_EXISTING_BASELINES", False, check_main=False
)

# Don't allow -o/--allow-baseline-overwrite AND --skip-tests-with-existing-baselines
existing_baseline_group = parser.add_mutually_exclusive_group()

existing_baseline_group.add_argument(
"-o",
"--allow-baseline-overwrite",
action="store_true",
default=default,
help="If the --generate option is given, then an attempt to overwrite "
"\nan existing baseline directory will raise an error. WARNING: Specifying this "
"\noption will allow existing baseline directories to be silently overwritten.",
"\noption will allow existing baseline directories to be silently overwritten. "
"\nIncompatible with --skip-tests-with-existing-baselines.",
)

existing_baseline_group.add_argument(
"--skip-tests-with-existing-baselines",
action="store_true",
default=default,
help="If the --generate option is given, then an attempt to overwrite "
samsrabin marked this conversation as resolved.
Show resolved Hide resolved
"\nan existing baseline directory will raise an error. WARNING: Specifying this "
"\noption will allow tests with existing baseline directories to be silently skipped. "
"\nIncompatible with -o/--allow-baseline-overwrite.",
)

default = get_default_setting(config, "WAIT", False, check_main=False)
Expand Down Expand Up @@ -759,6 +777,7 @@ def parse_command_line(args, description):
args.save_timing,
args.queue,
args.allow_baseline_overwrite,
args.skip_tests_with_existing_baselines,
args.output_root,
args.wait,
args.force_procs,
Expand Down Expand Up @@ -921,6 +940,7 @@ def create_test(
save_timing,
queue,
allow_baseline_overwrite,
skip_tests_with_existing_baselines,
output_root,
wait,
force_procs,
Expand Down Expand Up @@ -969,6 +989,7 @@ def create_test(
save_timing=save_timing,
queue=queue,
allow_baseline_overwrite=allow_baseline_overwrite,
skip_tests_with_existing_baselines=skip_tests_with_existing_baselines,
output_root=output_root,
force_procs=force_procs,
force_threads=force_threads,
Expand Down Expand Up @@ -1068,6 +1089,7 @@ def _main_func(description=None):
save_timing,
queue,
allow_baseline_overwrite,
skip_tests_with_existing_baselines,
output_root,
wait,
force_procs,
Expand Down Expand Up @@ -1122,6 +1144,7 @@ def _main_func(description=None):
save_timing,
queue,
allow_baseline_overwrite,
skip_tests_with_existing_baselines,
output_root,
wait,
force_procs,
Expand Down
18 changes: 16 additions & 2 deletions CIME/test_scheduler.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,7 @@ def __init__(
save_timing=False,
queue=None,
allow_baseline_overwrite=False,
skip_tests_with_existing_baselines=False,
output_root=None,
force_procs=None,
force_threads=None,
Expand Down Expand Up @@ -227,6 +228,7 @@ def __init__(
self._input_dir = input_dir
self._pesfile = pesfile
self._allow_baseline_overwrite = allow_baseline_overwrite
self._skip_tests_with_existing_baselines = skip_tests_with_existing_baselines
self._single_exe = single_exe
if self._single_exe:
self._allow_pnl = True
Expand Down Expand Up @@ -348,6 +350,8 @@ def __init__(
self._baseline_root, self._baseline_gen_name
)
existing_baselines = []
if skip_tests_with_existing_baselines:
tests_to_skip = []
for test_name in test_names:
test_baseline = os.path.join(full_baseline_dir, test_name)
if os.path.isdir(test_baseline):
Expand All @@ -357,11 +361,21 @@ def __init__(
clear_folder(os.path.join(test_baseline, "CaseDocs"))
else:
clear_folder(test_baseline)
elif skip_tests_with_existing_baselines:
tests_to_skip.append(test_name)
expect(
allow_baseline_overwrite or len(existing_baselines) == 0,
allow_baseline_overwrite
or len(existing_baselines) == 0
or skip_tests_with_existing_baselines,
"Baseline directories already exists {}\n"
"Use -o to avoid this error".format(existing_baselines),
"Use -o or --skip-tests-with-existing-baselines to avoid this error".format(
existing_baselines
),
)
if skip_tests_with_existing_baselines:
test_names = [
test for test in test_names if test not in tests_to_skip
]

if self._config.sort_tests:
_order_tests_by_runtime(test_names, self._baseline_root)
Expand Down
9 changes: 8 additions & 1 deletion CIME/tests/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,7 @@ def _create_test(
run_errors=False,
env_changes="",
default_baseline_area=False,
expect_cases_made=True,
):
"""
Convenience wrapper around create_test. Returns list of full paths to created cases. If multiple cases,
Expand Down Expand Up @@ -260,7 +261,13 @@ def _create_test(
)
cases.append(casedir)

self.assertTrue(len(cases) > 0, "create_test made no cases")
if expect_cases_made:
self.assertTrue(len(cases) > 0, "create_test made no cases")
else:
self.assertTrue(
len(cases) == 0,
"create_test unexpectedly made {} case(s)".format(len(cases)),
)

return cases[0] if len(cases) == 1 else cases

Expand Down
20 changes: 20 additions & 0 deletions CIME/tests/test_sys_cime_case.py
Original file line number Diff line number Diff line change
Expand Up @@ -748,3 +748,23 @@ def test_case_clean(self):
self.run_cmd_assert_result("./case.setup --clean", from_dir=casedir)
self.run_cmd_assert_result("./case.setup --clean", from_dir=casedir)
self.run_cmd_assert_result("./case.setup", from_dir=casedir)

def test_skip_run_with_existing_baseline(self):
test_name = "TESTRUNPASS_P1.f19_g16_rx1.A"
create_test_extra_args = ["--generate", "baseline", "--no-build", test_name]

orig_testroot = self._testroot
self._testroot = os.path.join(orig_testroot, "case0")
casedir_0 = self._create_test(
["--output-root", "case0"] + create_test_extra_args,
test_id=self._baseline_name,
expect_cases_made=True,
)
self._testroot = os.path.join(orig_testroot, "case1")
casedir_1 = self._create_test(
["--output-root", "case1", "--skip-tests-with-existing-baselines"]
+ create_test_extra_args,
test_id=self._baseline_name,
expect_cases_made=False,
)
self._testroot = orig_testroot
1 change: 1 addition & 0 deletions CIME/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -260,6 +260,7 @@ def _read_cime_config_file():
"walltime",
"job_queue",
"allow_baseline_overwrite",
"skip_tests_with_existing_baselines",
"wait",
"force_procs",
"force_threads",
Expand Down
Loading