Skip to content

Commit

Permalink
modified: eppy/pytest_helpers.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Santosh Philip committed Nov 4, 2023
1 parent 4efb7c3 commit a1a5b06
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion eppy/pytest_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,12 @@ def do_integration_tests():
bool
"""
result = os.getenv("EPPY_INTEGRATION", False)
try:
result = os.environ["EPPY_INTEGRATION"]
print(f" Actual EPPY_INTEGRATION = {result}")
except KeyError as e:
result = False
# result = os.getenv("EPPY_INTEGRATION", False)
if result == "True": # github CI returns strings 9no booleans)
result = True
print(f" **** EPPY_INTEGRATION = {result}")
Expand Down

0 comments on commit a1a5b06

Please sign in to comment.