diff --git a/src/benchcab/data/test/pbs_jobscript_skip_bitwise.sh b/src/benchcab/data/test/pbs_jobscript_skip_optional.sh similarity index 100% rename from src/benchcab/data/test/pbs_jobscript_skip_bitwise.sh rename to src/benchcab/data/test/pbs_jobscript_skip_optional.sh diff --git a/tests/test_pbs.py b/tests/test_pbs.py index bfccd68..795bfe5 100644 --- a/tests/test_pbs.py +++ b/tests/test_pbs.py @@ -29,8 +29,8 @@ def test_verbose_flag_added_to_command_line_arguments(self): benchcab_path="/absolute/path/to/benchcab", ) == load_package_data("test/pbs_jobscript_verbose.sh") - def test_skip_bitwise_comparison_step(self): - """Success case: skip fluxsite-bitwise-cmp step.""" + def test_skip_optional(self): + """Success case: skip optional steps.""" assert render_job_script( project="tm70", config_path="/path/to/config.yaml", @@ -38,7 +38,7 @@ def test_skip_bitwise_comparison_step(self): pbs_config=internal.FLUXSITE_DEFAULT_PBS, skip_bitwise_cmp=True, benchcab_path="/absolute/path/to/benchcab", - ) == load_package_data("test/pbs_jobscript_skip_bitwise.sh") + ) == load_package_data("test/pbs_jobscript_skip_optional.sh") def test_no_skip_coverage_step(self): """Success case: not skip coverage step."""