summaryrefslogtreecommitdiff
path: root/coverage/env.py
diff options
context:
space:
mode:
Diffstat (limited to 'coverage/env.py')
-rw-r--r--coverage/env.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/coverage/env.py b/coverage/env.py
index a00cfa07..64d93e21 100644
--- a/coverage/env.py
+++ b/coverage/env.py
@@ -117,4 +117,8 @@ TESTING = os.getenv('COVERAGE_TESTING', '') == 'True'
# Environment COVERAGE_NO_CONTRACTS=1 can turn off contracts while debugging
# tests to remove noise from stack traces.
# $set_env.py: COVERAGE_NO_CONTRACTS - Disable PyContracts to simplify stack traces.
-USE_CONTRACTS = TESTING and not bool(int(os.environ.get("COVERAGE_NO_CONTRACTS", 0)))
+USE_CONTRACTS = (
+ TESTING
+ and not bool(int(os.environ.get("COVERAGE_NO_CONTRACTS", 0)))
+ and (PYVERSION < (3, 11))
+)