Skip to content

Commit 8100272

Browse files
author
Kurt Biery
committed
Added the disabled_tpg_test by merging from the develop branch and modified it to include the HDF5 file removal changes.
1 parent 3f9f38f commit 8100272

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

integtest/disabled_tpg_test.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414

1515
import integrationtest.data_file_checks as data_file_checks
1616
import integrationtest.log_file_checks as log_file_checks
17-
import integrationtest.basic_checks as basic_checks
1817
import integrationtest.data_classes as data_classes
1918
import integrationtest.resource_validation as resource_validation
19+
import integrationtest.utility_functions as utility_functions
2020
from integrationtest.get_pytest_tmpdir import get_pytest_tmpdir
2121
from integrationtest.verbosity_helper import IntegtestVerbosityLevels
2222

@@ -132,7 +132,7 @@
132132

133133
def test_dunerc_success(run_dunerc, caplog):
134134
# check for run control success, problems during pytest setup, etc.
135-
basic_checks.basic_checks(run_dunerc, caplog, print_test_name=True)
135+
utility_functions.basic_checks(run_dunerc, caplog, print_test_name=True)
136136

137137

138138
def test_log_files(run_dunerc):
@@ -186,3 +186,7 @@ def test_data_files(run_dunerc):
186186
)
187187

188188
assert all_ok
189+
190+
191+
def test_cleanup(run_dunerc):
192+
utility_functions.remove_hdf5_files_if_requested(run_dunerc, this_test_requests_hdf5_file_removal=False)

0 commit comments

Comments
 (0)