summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2020-03-31 22:05:21 +0200
committerStefan Behnel <stefan_ml@behnel.de>2020-03-31 23:48:39 +0200
commit65f69510e95e5e1205e188c2ebb418d8ba336076 (patch)
tree0b4bfa3b201565dd45c97f16171afce9f8e4beee
parented94b465c5ceabd42e74052e3d164ec9b5d4a946 (diff)
downloadcython-65f69510e95e5e1205e188c2ebb418d8ba336076.tar.gz
Disable a saved compiler option in the test runner that cannot currently be changed in the tests directly (only in external compiler runs).
-rwxr-xr-xruntests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtests.py b/runtests.py
index 732053fb9..fe15a7c5b 100755
--- a/runtests.py
+++ b/runtests.py
@@ -883,7 +883,7 @@ class CythonCompileTestCase(unittest.TestCase):
'clear_to_none',
'error_on_unknown_names',
'error_on_uninitialized',
- 'cache_builtins',
+ # 'cache_builtins', # not currently supported due to incorrect global caching
)
]
self._saved_default_directives = list(Options.get_directive_defaults().items())