Skip to content

Commit

Permalink
Details of test-mod searching should not be printed to info
Browse files Browse the repository at this point in the history
It clutters-up the output when running create_test.
  • Loading branch information
jgfouca committed Feb 10, 2025
1 parent 5bbdc1d commit 6b0f901
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CIME/SystemTests/test_mods.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def find_test_mods(comp_interface, test_mods):
f"Invalid testmod, format should be `${{component}}-${{testmod}}`, got {test_mod!r}"
)

logger.info(
logger.debug(
"Searching for testmod {!r} for component {!r}".format(mod_path, component)
)

Expand All @@ -65,7 +65,7 @@ def find_test_mods(comp_interface, test_mods):
if os.path.exists(candidate_path):
test_mod_path = candidate_path

logger.info(
logger.debug(
"Found testmod {!r} for component {!r} in {!r}".format(
mod_path, component, test_mod_path
)
Expand Down

0 comments on commit 6b0f901

Please sign in to comment.