This change moves the tests data files and publish folder of assets repository to the main blender.git repository as LFS files. The goal of this change is to eliminate toil of modifying tests, cherry-picking changes to LFS branches, adding tests as part of a PR which brings new features or fixes. More detailed explanation and conversation can be found in the design task. Ref #137215 Pull Request: https://projects.blender.org/blender/blender/pulls/137219
30 lines
652 B
Python
30 lines
652 B
Python
# SPDX-FileCopyrightText: 2024 Blender Authors
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
# Full path to Blender executable, autodetected when running from Blender
|
|
blender_executable = ""
|
|
|
|
# Path to OpenImageIO idiff executable, empty if in PATH
|
|
idiff_path = ""
|
|
|
|
# list of .blend files and directories with .blend files to render
|
|
files = [
|
|
"animation",
|
|
"gameengine_visual",
|
|
"modifier_stack",
|
|
"sequence_editing",
|
|
"glsl",
|
|
"compositing",
|
|
"particles_and_hair",
|
|
"libraries_and_linking",
|
|
"physics",
|
|
"materials",
|
|
"rendering",
|
|
"modeling",
|
|
"sculpting",
|
|
"cycles",
|
|
]
|
|
|
|
files = ["../" + f for f in files]
|