mirror of
https://github.com/blender/blender-dev-tools.git
synced 2025-08-13 14:02:48 +00:00
Initial set of scripts to validate correctness of Blender release
Currently does basic checks: - Checks whether numpy imports and allows to do basic manipulation - Checks whether requests imports and allows to do basic manipulation - Checks that all binaries are static
This commit is contained in:
6
check_blender_release/scripts/numpy_basic_operation.py
Normal file
6
check_blender_release/scripts/numpy_basic_operation.py
Normal file
@ -0,0 +1,6 @@
|
||||
# This code tests bug reported in T50703
|
||||
|
||||
import numpy
|
||||
|
||||
a = numpy.array([[3, 2, 0], [3, 1, 0]], dtype=numpy.int32)
|
||||
a[0]
|
Reference in New Issue
Block a user