Skip to content

Commit

Permalink
modified: tests/conftest.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Santosh Philip committed Nov 5, 2023
1 parent ffb35a9 commit dcc4e8d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
IDD_FILES = os.path.join(RESOURCES_DIR, "iddfiles")
IDF_FILES = os.path.join(RESOURCES_DIR, "idffiles")
try:
VERSION = os.environ['ENERGYPLUS_INSTALL_VERSION'] # used in CI files
VERSION = os.environ["ENERGYPLUS_INSTALL_VERSION"] # used in CI files
except KeyError:
VERSION = "8-9-0" # current default for integration tests on local system
TEST_IDF = "V{}/smallfile.idf".format(VERSION[:3].replace("-", "_"))
Expand All @@ -26,11 +26,11 @@
TEST_OLD_IDD = "Energy+V7_2_0.idd"



def teardown_module(module):
"""new IDD has been set in the module. Here you tear it down"""
safeIDDreset()


@pytest.fixture()
def test_idf():
idd_file = os.path.join(IDD_FILES, TEST_IDD)
Expand Down

0 comments on commit dcc4e8d

Please sign in to comment.