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-11-12 22:04:05 +0300
committerBrecht Van Lommel <brecht@blender.org>2021-11-12 22:04:05 +0300
commit1b55b911f24e57013167a29f4e01c091020421bc (patch)
tree0659b0983c2ac13a3b14c76ae6b5f9f277828809 /tests
parentd845ba481c6d2ef50bf87bec834555d5e1faf64c (diff)
parent71131b4969813e037986b4fa91439e8b86059057 (diff)
Merge branch 'blender-v3.0-release'
Diffstat (limited to 'tests')
-rw-r--r--tests/performance/api/environment.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/performance/api/environment.py b/tests/performance/api/environment.py
index 235a1805ba9..4db81524120 100644
--- a/tests/performance/api/environment.py
+++ b/tests/performance/api/environment.py
@@ -208,7 +208,7 @@ class TestEnvironment:
def call_blender(self, args: List[str], foreground=False) -> List[str]:
# Execute Blender command with arguments.
- common_args = ['--factory-startup', '--enable-autoexec', '--python-exit-code', '1']
+ common_args = ['--factory-startup', '-noaudio', '--enable-autoexec', '--python-exit-code', '1']
if foreground:
common_args += ['--no-window-focus', '--window-geometry', '0', '0', '1024', '768']
else: