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 21:12:17 +0300
committerBrecht Van Lommel <brecht@blender.org>2021-11-12 22:03:46 +0300
commit71131b4969813e037986b4fa91439e8b86059057 (patch)
tree1c402a586826e298dc6779824ad5e7dafa414905 /tests
parentb4d9b8b7f8d69165bec0c0006cbc1cd03e769081 (diff)
Tests: disable audio system for performance tests
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: