Skip to content

Commit

Permalink
Move --nobest arg.
Browse files Browse the repository at this point in the history
Skip-func-hw-test-medium-verbs-provider: true
Skip-func-hw-test-large: true
Test-tag: test_core_files test_core_files_hw

Required-githooks: true

Signed-off-by: Phil Henderson <[email protected]>
  • Loading branch information
phender committed Jan 10, 2024
1 parent ab71e0d commit a8eb7b0
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/tests/ftest/process_core_files.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
(C) Copyright 2022-2023 Intel Corporation.
(C) Copyright 2022-2024 Intel Corporation.
SPDX-License-Identifier: BSD-2-Clause-Patent
"""
Expand Down Expand Up @@ -287,7 +287,7 @@ def install_debuginfo_packages(self):
cmds.append(["sudo", "rm", "-f", path])

if self.USE_DEBUGINFO_INSTALL:
dnf_args = ["--exclude", "ompi-debuginfo"]
dnf_args = ["--nobest", "--exclude", "ompi-debuginfo"]
if os.getenv("TEST_RPMS", 'false') == 'true':
if "suse" in self.distro_info.name.lower():
dnf_args.extend(["libpmemobj1", "python3", "openmpi3"])
Expand Down Expand Up @@ -324,7 +324,6 @@ def install_debuginfo_packages(self):
if self.is_el() or "suse" in self.distro_info.name.lower():
cmd.append("--enablerepo=*debug*")
cmd.append("install")
cmd.append("--nobest") # DAOS-14900
for pkg in install_pkgs:
try:
cmd.append(f"{pkg['name']}-{pkg['version']}-{pkg['release']}")
Expand Down

0 comments on commit a8eb7b0

Please sign in to comment.