Skip to content

Commit

Permalink
Remove some unneeded print statements.
Browse files Browse the repository at this point in the history
  • Loading branch information
samsrabin committed Feb 18, 2025
1 parent 4051ee0 commit 491507a
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
1 change: 0 additions & 1 deletion python/ctsm/site_and_regional/tower_site.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,6 @@ def build_base_case(
abort("Input output_root directory does NOT exist: " + str(output_root))

case_path = os.path.join(output_root, self.name)
print(case_path)

logger.info("base_case_name : %s", self.name)
logger.info("user_mods_dir : %s", user_mods_dirs[0])
Expand Down
6 changes: 0 additions & 6 deletions python/ctsm/test/test_sys_run_tower.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ def test_one_site(self):
"--output-root",
self._tempdir,
]
print(sys.argv)
main("")

# assert that BART directories were created during setup
Expand Down Expand Up @@ -138,7 +137,6 @@ def test_xmlchange_neon(self):
"--output-root",
self._tempdir,
]
print(sys.argv)
main("")

# Check that the --xmlchange argument is obeyed
Expand Down Expand Up @@ -200,7 +198,6 @@ def test_setup_only_neon(self):
"--output-root",
self._tempdir,
]
print(sys.argv)
main("")

# make sure that build didn't happen: this dir should be empty
Expand Down Expand Up @@ -251,7 +248,6 @@ def test_overwrite_neon(self):
"--output-root",
self._tempdir,
]
print(sys.argv)
main("")

# create a file that should be erased during the upcoming overwrite
Expand All @@ -262,7 +258,6 @@ def test_overwrite_neon(self):

# run the tool again, overwriting existing
sys.argv += ["--overwrite"]
print(sys.argv)
main("")

# ensure that file we created is gone
Expand Down Expand Up @@ -295,7 +290,6 @@ def test_overwrite_plumber(self):

# run the tool again, overwriting existing
sys.argv += ["--overwrite"]
print(sys.argv)
main("")

# ensure that file we created is gone
Expand Down

0 comments on commit 491507a

Please sign in to comment.