Merge pull request #1405 from CarlosNihelton/fix-api-test

Respects the output base dir on server.spawn() on API tests
This commit is contained in:
Dan Bungert 2022-09-02 08:51:43 -06:00 committed by GitHub
commit 9a651f57de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -157,7 +157,7 @@ class SystemSetupServer(Server):
env = os.environ.copy()
env['SUBIQUITY_REPLAY_TIMESCALE'] = '100'
cmd = ['python3', '-m', 'system_setup.cmd.server',
'--dry-run', '--socket', socket]
'--dry-run', '--socket', socket, '--output-base', output_base]
if extra_args is not None:
cmd.extend(extra_args)
self.proc = await astart_command(cmd, env=env)