Skip to content

Commit

Permalink
Coverage, tagging 1.9.2 as well
Browse files Browse the repository at this point in the history
  • Loading branch information
Myoldmopar committed Oct 22, 2020
1 parent 3c9ae01 commit b02ec47
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions epregressions/runtests.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import shutil
import sys

if getattr(sys, 'frozen', False):
if getattr(sys, 'frozen', False): # pragma: no cover -- not covering frozen apps in unit tests
frozen = True
else:
frozen = False
Expand Down Expand Up @@ -353,7 +353,7 @@ def run_build(self, build_tree):
# class and add some extra stuff in there, but I could not figure out how to integrate that along with the
# `apply_async` approach I am using. Blech. Once again, on Windows, this means it will partially not be
# multithreaded.
if frozen and system() == 'Windows':
if frozen and system() == 'Windows': # pragma: no cover -- not covering frozen apps in unit tests
for run in energy_plus_runs:
ep_return = self.ep_wrapper(run)
self.ep_done(ep_return)
Expand Down

0 comments on commit b02ec47

Please sign in to comment.