Skip to content

Commit 4f5b54c

Browse files
committed
try run_local
Test-tag: test_dfuse_daos_build_wt_pil4dfs Signed-off-by: Dalton Bohning <dalton.bohning@hpe.com>
1 parent 23cf34f commit 4f5b54c

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

src/tests/ftest/dfuse/daos_build.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
from command_utils_base import EnvironmentVariables
1717
from dfuse_utils import get_dfuse, start_dfuse
1818
from distro_utils import detect
19-
from run_utils import run_remote
19+
from run_utils import run_local, run_remote
2020

2121

2222
def run_build_test(self, cache_mode, il_lib=None, run_on_vms=False):
@@ -160,8 +160,9 @@ def run_build_test(self, cache_mode, il_lib=None, run_on_vms=False):
160160
timeout *= 2
161161
self.log_step(f"Running '{cmd}' with a {timeout}s timeout")
162162
start = time.time()
163-
result = run_remote(
164-
self.log, self.hostlist_clients, command, verbose=True, timeout=timeout)
163+
result = run_local(self.log, command, verbose=True, timeout=timeout)
164+
# result = run_remote(
165+
# self.log, self.hostlist_clients, command, verbose=True, timeout=timeout)
165166
elapsed = time.time() - start
166167
(minutes, seconds) = divmod(elapsed, 60)
167168
self.log.info(

0 commit comments

Comments
 (0)