Skip to content

Commit

Permalink
Just testing
Browse files Browse the repository at this point in the history
  • Loading branch information
john-science committed May 15, 2024
1 parent 73baa10 commit 1f81d99
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions armi/bookkeeping/db/tests/test_databaseInterface.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,9 +94,11 @@ def tearDown(self):
self.stateRetainer.__exit__()
self.td.__exit__(None, None, None)
# test_interactBOL leaves behind some crumbs that TempDirChanger is not catching
bolDirt = os.path.join(PROJECT_ROOT, "armiRun.h5")
if os.path.exists(bolDirt):
os.remove(bolDirt)
import time
time.sleep(1)
crumb = os.path.join(PROJECT_ROOT, "armiRun.h5")
if os.path.exists(crumb):
os.remove(crumb)

def test_interactEveryNodeReturn(self):
"""Test that the DB is NOT written to if cs["tightCoupling"] = True."""
Expand Down

0 comments on commit 1f81d99

Please sign in to comment.