We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb769c6 commit 571935fCopy full SHA for 571935f
tests/__init__.py
@@ -1,7 +1,8 @@
1
import sys
2
from os import environ, getenv
3
4
+# Required for consistent test output
5
environ['COLUMNS'] = '120'
6
-DEF_MODE = 'ERROR' if sys.version_info >= (3, 9) else 'WARNING'
7
+DEF_MODE = 'ERROR' if sys.version_info >= (3, 10) else 'WARNING'
8
environ['RUNTIME_TYPE_CHECKING_MODE'] = getenv('RUNTIME_TYPE_CHECKING_MODE', DEF_MODE)
0 commit comments