Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBrecht Van Lommel <brecht@blender.org>2021-10-21 19:31:17 +0300
committerBrecht Van Lommel <brecht@blender.org>2021-10-21 22:25:34 +0300
commitaea2287af33c17c5f310ddb20f57d23d2cbe09ac (patch)
tree041c7bb6b17ac3c8509b965aca5bff0d290ba33d /tests
parent0a63297a8818e0dba89ce169bd39a2f800534721 (diff)
Tests: updated Python bundled modules test
Add the new zstandard module, as well as previously missing ones. Ref D12777, T88438
Diffstat (limited to 'tests')
-rw-r--r--tests/python/bl_bundled_modules.py5
1 files changed, 5 insertions, 0 deletions
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