[Bf-blender-cvs] [a7bd8356448] blender-v2.83-release: Fix Python bundled module test error

Brecht Van Lommel noreply at git.blender.org
Tue Apr 28 13:00:34 CEST 2020


Commit: a7bd8356448efbeb6fc10c0e695f9490219560c5
Author: Brecht Van Lommel
Date:   Tue Apr 28 12:42:40 2020 +0200
Branches: blender-v2.83-release
https://developer.blender.org/rBa7bd8356448efbeb6fc10c0e695f9490219560c5

Fix Python bundled module test error

We don't bundle cffi, rather the ffi library is used for ctypes. This test is
currently passing even when there are errors, that will be fixed next.

===================================================================

M	tests/python/bl_bundled_modules.py

===================================================================

diff --git a/tests/python/bl_bundled_modules.py b/tests/python/bl_bundled_modules.py
index 3ef5040af01..d3fe2861d9e 100644
--- a/tests/python/bl_bundled_modules.py
+++ b/tests/python/bl_bundled_modules.py
@@ -21,7 +21,7 @@
 # Test that modules we ship with our Python installation are available
 
 import bz2
-import cffi
+import ctypes
 import lzma
 import numpy
 import sqlite3



More information about the Bf-blender-cvs mailing list