Tests: disable audio system for performance tests

This commit is contained in:
Brecht Van Lommel 2021-11-12 19:12:17 +01:00
parent b4d9b8b7f8
commit 71131b4969
1 changed files with 1 additions and 1 deletions

View File

@ -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: