Skip to content

Commit

Permalink
fixup: dont change cwd in test
Browse files Browse the repository at this point in the history
  • Loading branch information
matzf committed Sep 28, 2023
1 parent 2816daa commit 25258b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions acceptance/common/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 25258b7

Please sign in to comment.