Skip to content

Commit ca8af70

Browse files
committed
rename EasyBlock._skip_step to EasyBlock.skip_step, to make it part of the public API
1 parent d7a2e6f commit ca8af70

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

easybuild/framework/easyblock.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3044,7 +3044,7 @@ def update_config_template_run_step(self):
30443044
self.cfg.template_values[name[0]] = str(getattr(self, name[0], None))
30453045
self.cfg.generate_template_values()
30463046

3047-
def _skip_step(self, step, skippable):
3047+
def skip_step(self, step, skippable):
30483048
"""Dedice whether or not to skip the specified step."""
30493049
module_only = build_option('module_only')
30503050
force = build_option('force') or build_option('rebuild')
@@ -3243,7 +3243,7 @@ def run_all_steps(self, run_test_cases):
32433243

32443244
try:
32453245
for (step_name, descr, step_methods, skippable) in steps:
3246-
if self._skip_step(step_name, skippable):
3246+
if self.skip_step(step_name, skippable):
32473247
print_msg("%s [skipped]" % descr, log=self.log, silent=self.silent)
32483248
else:
32493249
if self.dry_run:

0 commit comments

Comments
 (0)