Skip to content

Commit 249d179

Browse files
committed
Which test class???
1 parent b8f6d0a commit 249d179

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed

.github/workflows/wintests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ jobs:
2424
- name: Run Unit Tests on Windows
2525
run: |
2626
pip install -e .[memprof,mpi,test]
27-
pytest armi/bookkeeping/db/tests/test_databaseInterface.py
27+
pytest armi/bookkeeping/db/tests/test_databaseInterface.py::TestStandardFollowOn
2828
- name: Find Test Crumbs
2929
run: python .github/workflows/find_test_crumbs.py

.github/workflows/wintests2.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: ARMI Windows 2 tests
1+
name: ARMI Windows 1 tests
22

33
on:
44
push:
@@ -24,6 +24,6 @@ jobs:
2424
- name: Run Unit Tests on Windows
2525
run: |
2626
pip install -e .[memprof,mpi,test]
27-
pytest armi/bookkeeping/db/tests/test_layout.py
27+
pytest armi/bookkeeping/db/tests/test_databaseInterface.py::TestDatabaseReading
2828
- name: Find Test Crumbs
2929
run: python .github/workflows/find_test_crumbs.py

.github/workflows/wintests3.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: ARMI Windows 3 tests
1+
name: ARMI Windows 1 tests
22

33
on:
44
push:
@@ -24,6 +24,6 @@ jobs:
2424
- name: Run Unit Tests on Windows
2525
run: |
2626
pip install -e .[memprof,mpi,test]
27-
pytest armi/bookkeeping/db/tests/test_comparedb3.py
27+
pytest armi/bookkeeping/db/tests/test_databaseInterface.py::TestDatabaseWriter
2828
- name: Find Test Crumbs
2929
run: python .github/workflows/find_test_crumbs.py

armi/bookkeeping/db/tests/test_databaseInterface.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,7 @@ def tearDown(self):
9393
self.db.close()
9494
self.stateRetainer.__exit__()
9595
self.td.__exit__(None, None, None)
96-
# test_interactBOL leaves behind some dirt (accessible after db close) that the
97-
# TempDirChanger is not catching
96+
# test_interactBOL leaves behind some crumbs that TempDirChanger is not catching
9897
bolDirt = os.path.join(PROJECT_ROOT, "armiRun.h5")
9998
if os.path.exists(bolDirt):
10099
os.remove(bolDirt)

0 commit comments

Comments
 (0)