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 80c6b60 commit 33d88ceCopy full SHA for 33d88ce
run-test-suite.py
@@ -723,9 +723,10 @@ def exclude_tests_below(path):
723
exclude_test('tests/cpychecker/refcounts/uninitialized_data/function_arg')
724
exclude_test('tests/cpychecker/refcounts/use_after_dealloc')
725
726
-# Tests failing on Python 3.4:
727
-if sys.version_info[:2] == (3, 4):
+# Tests failing due to repr changes in Python 3.4+
+if sys.version_info[0] == 3 and sys.version_info[1] >= 4:
728
exclude_test('tests/plugin/callgraph')
729
+ exclude_test('tests/plugin/rtl')
730
731
def run_one_test(testdir):
732
try:
0 commit comments