Skip to content

Commit

Permalink
modified: tests/conftest.py
Browse files Browse the repository at this point in the history
    modified:   tests/test_runner.py
  • Loading branch information
Santosh Philip committed Nov 4, 2023
1 parent 9eda81b commit aa8ba70
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion 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 Down
2 changes: 1 addition & 1 deletion tests/test_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def versiontuple(vers):
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 Down

0 comments on commit aa8ba70

Please sign in to comment.