summaryrefslogtreecommitdiff
path: root/coverage/misc.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2015-07-23 07:35:28 -0400
committerNed Batchelder <ned@nedbatchelder.com>2015-07-23 07:35:28 -0400
commit2cc4228e4b7543418d7e14d9eca66f7263870cf3 (patch)
tree3fa2d95c6153276eaf95e01e4d5b2e27fa6f7d1b /coverage/misc.py
parentb5d3a77d238c98ae85339e4c443627b60ddc4235 (diff)
downloadpython-coveragepy-git-2cc4228e4b7543418d7e14d9eca66f7263870cf3.tar.gz
Make sure env.TESTING is true during meta-coverage.
Diffstat (limited to 'coverage/misc.py')
-rw-r--r--coverage/misc.py16
1 files changed, 10 insertions, 6 deletions
diff --git a/coverage/misc.py b/coverage/misc.py
index b99fbb81..6b7321da 100644
--- a/coverage/misc.py
+++ b/coverage/misc.py
@@ -15,12 +15,16 @@ if env.TESTING:
from contracts import contract # pylint: disable=unused-import
from contracts import new_contract
- # Define contract words that PyContract doesn't have.
- new_contract('bytes', lambda v: isinstance(v, bytes))
- if env.PY3:
- new_contract('unicode', lambda v: isinstance(v, unicode_class))
-
-else:
+ try:
+ # Define contract words that PyContract doesn't have.
+ new_contract('bytes', lambda v: isinstance(v, bytes))
+ if env.PY3:
+ new_contract('unicode', lambda v: isinstance(v, unicode_class))
+ except ValueError:
+ # During meta-coverage, this module is imported twice, and PyContracts
+ # doesn't like redefining contracts. It's OK.
+ pass
+else: # pragma: not covered
# We aren't using real PyContracts, so just define a no-op decorator as a
# stunt double.
def contract(**unused):