From ca93905b3555f2a3260d72401eace9c47765a22e Mon Sep 17 00:00:00 2001 From: jstilley Date: Wed, 15 May 2024 09:01:04 -0700 Subject: [PATCH] testing a fix for the offending test --- armi/bookkeeping/db/tests/test_databaseInterface.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/armi/bookkeeping/db/tests/test_databaseInterface.py b/armi/bookkeeping/db/tests/test_databaseInterface.py index c3598df97..84e0b772c 100644 --- a/armi/bookkeeping/db/tests/test_databaseInterface.py +++ b/armi/bookkeeping/db/tests/test_databaseInterface.py @@ -115,6 +115,11 @@ def test_interactBOL(self): self.dbi.interactBOL() self.assertIsNotNone(self.dbi._db) + for _ in range(10): + crumb = os.path.join(PROJECT_ROOT, "armiRun.h5") + if os.path.exists(crumb): + os.remove(crumb) + def test_distributable(self): self.assertEqual(self.dbi.distributable(), 4) self.dbi.interactDistributeState()