From aea2287af33c17c5f310ddb20f57d23d2cbe09ac Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Thu, 21 Oct 2021 18:31:17 +0200 Subject: [PATCH] Tests: updated Python bundled modules test Add the new zstandard module, as well as previously missing ones. Ref D12777, T88438 --- tests/python/bl_bundled_modules.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/python/bl_bundled_modules.py b/tests/python/bl_bundled_modules.py index d3fe2861d9e..012eaf8246d 100644 --- a/tests/python/bl_bundled_modules.py +++ b/tests/python/bl_bundled_modules.py @@ -21,9 +21,14 @@ # Test that modules we ship with our Python installation are available import bz2 +import certifi import ctypes +import cython import lzma import numpy +import requests import sqlite3 import ssl +import urllib3 import zlib +import zstandard