From b12e6737c3e50ff4a285d45103798923faf566b1 Mon Sep 17 00:00:00 2001 From: ahgamut <41098605+ahgamut@users.noreply.github.com> Date: Fri, 13 May 2022 12:46:33 +0530 Subject: [PATCH] skip pure-python tests in mpdecimal --- third_party/python/Lib/test/test_decimal.py | 1 + 1 file changed, 1 insertion(+) diff --git a/third_party/python/Lib/test/test_decimal.py b/third_party/python/Lib/test/test_decimal.py index d36b3c9b4..bed37d56e 100644 --- a/third_party/python/Lib/test/test_decimal.py +++ b/third_party/python/Lib/test/test_decimal.py @@ -5631,6 +5631,7 @@ all_tests = [ if not C: all_tests = all_tests[1::2] else: + all_tests = all_tests[0::2] all_tests.insert(0, CheckAttributes) all_tests.insert(1, SignatureTest)