Skip to content

Commit

Permalink
Which test class???
Browse files Browse the repository at this point in the history
  • Loading branch information
john-science committed May 15, 2024
1 parent b8f6d0a commit 249d179
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/wintests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ jobs:
- name: Run Unit Tests on Windows
run: |
pip install -e .[memprof,mpi,test]
pytest armi/bookkeeping/db/tests/test_databaseInterface.py
pytest armi/bookkeeping/db/tests/test_databaseInterface.py::TestStandardFollowOn
- name: Find Test Crumbs
run: python .github/workflows/find_test_crumbs.py
4 changes: 2 additions & 2 deletions .github/workflows/wintests2.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: ARMI Windows 2 tests
name: ARMI Windows 1 tests

on:
push:
Expand All @@ -24,6 +24,6 @@ jobs:
- name: Run Unit Tests on Windows
run: |
pip install -e .[memprof,mpi,test]
pytest armi/bookkeeping/db/tests/test_layout.py
pytest armi/bookkeeping/db/tests/test_databaseInterface.py::TestDatabaseReading
- name: Find Test Crumbs
run: python .github/workflows/find_test_crumbs.py
4 changes: 2 additions & 2 deletions .github/workflows/wintests3.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: ARMI Windows 3 tests
name: ARMI Windows 1 tests

on:
push:
Expand All @@ -24,6 +24,6 @@ jobs:
- name: Run Unit Tests on Windows
run: |
pip install -e .[memprof,mpi,test]
pytest armi/bookkeeping/db/tests/test_comparedb3.py
pytest armi/bookkeeping/db/tests/test_databaseInterface.py::TestDatabaseWriter
- name: Find Test Crumbs
run: python .github/workflows/find_test_crumbs.py
3 changes: 1 addition & 2 deletions armi/bookkeeping/db/tests/test_databaseInterface.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,7 @@ def tearDown(self):
self.db.close()
self.stateRetainer.__exit__()
self.td.__exit__(None, None, None)
# test_interactBOL leaves behind some dirt (accessible after db close) that the
# TempDirChanger is not catching
# 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)
Expand Down

0 comments on commit 249d179

Please sign in to comment.