bpo-40214: Temporarily disable a ctypes test (GH-19404)

Only one particular sub-test of
ctypes.test.test_loading.test_load_dll_with_flags is disabled, which
caused failures on Azure Pipelines CI.
This commit is contained in:
Zachary Ware 2020-04-07 01:39:58 -05:00 committed by GitHub
parent 8ea10a9446
commit f407e209c1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 2 deletions

View File

@ -158,6 +158,9 @@ class LoaderTest(unittest.TestCase):
# Relative path (but not just filename) should succeed
should_pass("WinDLL('./_sqlite3.dll')")
# XXX: This test has started failing on Azure Pipelines CI. See
# bpo-40214 for more information.
if 0:
# Insecure load flags should succeed
should_pass("WinDLL('_sqlite3.dll', winmode=0)")