diff options
author | Federico Caselli <cfederico87@gmail.com> | 2022-10-17 22:02:13 +0200 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2022-11-02 21:38:31 -0400 |
commit | d10b62f54e6b9dd0613c0412b924c1b346ec1611 (patch) | |
tree | 07d246255d0372c5a7839e1aec354edacf687fdf /test/ext/mypy/test_mypy_plugin_py3k.py | |
parent | 66e591cf8a5de6d5dabdecf2bb279dec90962e15 (diff) | |
download | sqlalchemy-d10b62f54e6b9dd0613c0412b924c1b346ec1611.tar.gz |
Improve typings of execution options
Fixes: #8605
Change-Id: I4aec83b9f321462427c3f4ac941c3b272255c088
Diffstat (limited to 'test/ext/mypy/test_mypy_plugin_py3k.py')
-rw-r--r-- | test/ext/mypy/test_mypy_plugin_py3k.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/ext/mypy/test_mypy_plugin_py3k.py b/test/ext/mypy/test_mypy_plugin_py3k.py index 9b2853970..dce75b4f3 100644 --- a/test/ext/mypy/test_mypy_plugin_py3k.py +++ b/test/ext/mypy/test_mypy_plugin_py3k.py @@ -119,6 +119,10 @@ class MypyPluginTest(fixtures.TestBase): args.append(path) + # I set this locally but for the suite here needs to be + # disabled + os.environ.pop("MYPY_FORCE_COLOR", None) + result = api.run(args) return result |