Skip to content

Commit

Permalink
Add override for weather member function in ep workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Myoldmopar committed Sep 27, 2018
1 parent b2d26be commit 9a92d91
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions workflows/energyplus.py
Original file line number Diff line number Diff line change
Expand Up @@ -400,6 +400,9 @@ def context(self):
def description(self):
return "Run EnergyPlus with SI unit system"

def uses_weather(self):
return True

def get_file_types(self):
return ["*.idf", "*.imf", "*.epJSON"]

Expand Down Expand Up @@ -434,6 +437,9 @@ def context(self):
def description(self):
return "Run EnergyPlus with IP unit system"

def uses_weather(self):
return True

def get_file_types(self):
return ["*.idf", "*.imf", "*.epJSON"]

Expand Down

8 comments on commit 9a92d91

@nrel-bot
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

FinalUpdateToWorkflows (Myoldmopar) - i386-Windows-7-VisualStudio-14: OK (3037 of 3037 tests passed, 0 test warnings)

Build Badge Test Badge

@nrel-bot-3
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

FinalUpdateToWorkflows (Myoldmopar) - x86_64-MacOS-10.9-clang: OK (3037 of 3037 tests passed, 0 test warnings)

Build Badge Test Badge

@nrel-bot
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

FinalUpdateToWorkflows (Myoldmopar) - Win64-Windows-7-VisualStudio-14: OK (3037 of 3037 tests passed, 0 test warnings)

Build Badge Test Badge

@nrel-bot-2
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

FinalUpdateToWorkflows (Myoldmopar) - x86_64-Linux-Ubuntu-14.04-gcc-4.8: OK (3077 of 3077 tests passed, 0 test warnings)

Build Badge Test Badge

@nrel-bot-2
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

FinalUpdateToWorkflows (Myoldmopar) - x86_64-Linux-Ubuntu-14.04-cppcheck-1.61: OK (0 of 0 tests passed, 0 test warnings)

Build Badge

@nrel-bot-2
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

FinalUpdateToWorkflows (Myoldmopar) - x86_64-Linux-Ubuntu-14.04-gcc-4.8-UnitTestsCoverage-Debug: OK (1773 of 1773 tests passed, 0 test warnings)

Build Badge Test Badge Coverage Badge

@nrel-bot-2
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

FinalUpdateToWorkflows (Myoldmopar) - x86_64-Linux-Ubuntu-14.04-gcc-4.8-IntegrationCoverage-Debug: OK (2409 of 2409 tests passed, 0 test warnings)

Build Badge Test Badge Coverage Badge

@nrel-bot-2
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

FinalUpdateToWorkflows (Myoldmopar) - x86_64-Linux-Ubuntu-14.04-custom_check: OK (0 of 0 tests passed, 0 test warnings)

Build Badge

Please sign in to comment.