diff --git a/packages/framework/pr_tools/trilinosprhelpers/TrilinosPRConfigurationBase.py b/packages/framework/pr_tools/trilinosprhelpers/TrilinosPRConfigurationBase.py index 02b3a9f22fe6..616b23861268 100644 --- a/packages/framework/pr_tools/trilinosprhelpers/TrilinosPRConfigurationBase.py +++ b/packages/framework/pr_tools/trilinosprhelpers/TrilinosPRConfigurationBase.py @@ -630,7 +630,6 @@ def create_package_enables_file(self, dryrun=False): job_name = self.arg_pr_jenkins_job_name enable_map_entry = self.get_multi_property_from_config("ENABLE_MAP", job_name, delimeter=" ") - # Generate files using ATDM/TriBiTS Scripts if enable_map_entry is None: cmd = [os.path.join( self.arg_workspace_dir, @@ -741,6 +740,7 @@ def prepare_test(self): self.message("--- arg_ctest_driver = {}".format(self.arg_ctest_driver)) self.message("--- arg_ctest_drop_site = {}".format(self.arg_ctest_drop_site)) self.message("--- arg_ccache_enable = {}".format(self.arg_ccache_enable)) + self.message("--- arg_skip_create_packageenables = {}".format(self.arg_skip_create_packageenables)) self.message("") self.message("--- concurrency_build = {}".format(self.concurrency_build)) self.message("--- concurrency_test = {}".format(self.concurrency_test)) diff --git a/packages/framework/pr_tools/trilinosprhelpers/unittests/test_TrilinosPRConfigurationBase.py b/packages/framework/pr_tools/trilinosprhelpers/unittests/test_TrilinosPRConfigurationBase.py index ffce49219b97..b5673ff8901d 100755 --- a/packages/framework/pr_tools/trilinosprhelpers/unittests/test_TrilinosPRConfigurationBase.py +++ b/packages/framework/pr_tools/trilinosprhelpers/unittests/test_TrilinosPRConfigurationBase.py @@ -707,7 +707,7 @@ def test_TrilinosPRConfigurationBase_prepare_test_skip_create_package_enables_fi args.skip_create_packageenables = True pr_config = trilinosprhelpers.TrilinosPRConfigurationBase(args) - trilinosprhelpers.TrilinosPRConfigurationBase.create_package_enables_file = Mock() + pr_config.create_package_enables_file = Mock() pr_config.prepare_test() pr_config.create_package_enables_file.assert_not_called()