Rollup merge of #128797 - Jeff-A-Martin:fuchsia-test-runner, r=tmandry

Fuchsia Test Runner: enable ffx repository server

The default repository server setting has changed on Fuchsia (default is newly "false"). Now, in order to start the repository server, the config `repository.server.enabled` must be set to true.
This commit is contained in:
Trevor Gross 2024-08-07 20:49:04 -05:00 committed by GitHub
commit f4fe5c835a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -571,6 +571,19 @@ class TestEnvironment:
)
# Start repository server
# Note that we must first enable the repository server daemon.
check_call_with_logging(
[
ffx_path,
"config",
"set",
"repository.server.enabled",
"true",
],
env=ffx_env,
stdout_handler=self.subprocess_logger.debug,
stderr_handler=self.subprocess_logger.debug,
)
check_call_with_logging(
[
ffx_path,