diff --git a/acceptance/common/base.py b/acceptance/common/base.py index fd8dd7ee76..dda57be94a 100644 --- a/acceptance/common/base.py +++ b/acceptance/common/base.py @@ -226,12 +226,12 @@ def await_connectivity(self, quiet_seconds=None, timeout_seconds=None): it reports the missing segments at 1s interval. """ cmd = self.get_executable("await-connectivity") + cmd.cwd = self.artifacts if quiet_seconds is not None: cmd = cmd["-q", str(quiet_seconds)] if timeout_seconds is not None: cmd = cmd["-t", str(timeout_seconds)] - with local.cwd(self.artifacts): - cmd.run_fg() + cmd.run_fg() def execute_tester(self, isd_as: ISD_AS, cmd: str, *args: str) -> str: """Executes a command in the designated "tester" container for the specified ISD-AS.