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

make helper function internal #1148

Merged
Changes from all 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
4 changes: 2 additions & 2 deletions src/sst/core/testingframework/sst_unittest_support.py
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ def host_os_get_num_cores_on_system():
# SST Skipping Support
################################################################################

def testing_check_is_scenario_filtering_enabled(scenario_name):
def _testing_check_is_scenario_filtering_enabled(scenario_name):
""" Determine if a scenario filter name is enabled

Args:
Expand All @@ -384,7 +384,7 @@ def skip_on_scenario(scenario_name, reason):
"""
check_param_type("scenario_name", scenario_name, str)
check_param_type("reason", reason, str)
if not testing_check_is_scenario_filtering_enabled(scenario_name):
if not _testing_check_is_scenario_filtering_enabled(scenario_name):
return lambda func: func
return unittest.skip(reason)

Expand Down
Loading