Skip to content
8 changes: 8 additions & 0 deletions ci/rpm/test_daos_node.sh
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,14 @@ FTEST=/usr/lib/daos/TESTING/ftest
python3 -m venv venv
# shellcheck disable=SC1091
source venv/bin/activate

cat <<EOF > venv/pip.conf
[global]
progress_bar = off
no_color = true
quiet = 1
EOF

pip install --upgrade pip
pip install -r $FTEST/requirements-ftest.txt

Expand Down
14 changes: 9 additions & 5 deletions ci/unit/test_main_node.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
#
# Copyright 2020-2023 Intel Corporation.
# Copyright 2025 Hewlett Packard Enterprise Development LP
# Copyright 2025-2026 Hewlett Packard Enterprise Development LP
#
# SPDX-License-Identifier: BSD-2-Clause-Patent
#
Expand Down Expand Up @@ -84,13 +84,17 @@ rm -rf "$test_log_dir"
python3 -m venv venv
# shellcheck disable=SC1091
source venv/bin/activate
# touch venv/pip.conf
# pip config set global.progress_bar off
# pip config set global.no_color true

cat <<EOF > venv/pip.conf
[global]
progress_bar = off
no_color = true
quiet = 1
EOF

pip install --upgrade pip
pip install --requirement requirements-utest.txt

pip install --requirement requirements-utest.txt
pip install /opt/daos/lib/daos/python/

HTTPS_PROXY="${DAOS_HTTPS_PROXY:-}" utils/run_utest.py $RUN_TEST_VALGRIND \
Expand Down
12 changes: 8 additions & 4 deletions ci/unit/test_nlt_node.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,17 @@ sudo bash -c ". ./utils/sl/setup_local.sh; ./utils/setup_daos_server_helper.sh"
python3.11 -m venv venv
# shellcheck disable=SC1091
source venv/bin/activate
touch venv/pip.conf
pip config set global.progress_bar off
pip config set global.no_color true

cat <<EOF > venv/pip.conf
[global]
progress_bar = off
no_color = true
quiet = 1
EOF

pip install --upgrade pip
pip install --requirement requirements-utest.txt

pip install --requirement requirements-utest.txt
pip install /opt/daos/lib/daos/python/

# set high open file limit in the shell to avoid extra warning
Expand Down
8 changes: 8 additions & 0 deletions src/tests/ftest/scripts/main.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,15 @@ python3 -m venv venv
# shellcheck disable=SC1091
source venv/bin/activate

cat <<EOF > venv/pip.conf
[global]
progress_bar = off
no_color = true
quiet = 1
EOF

pip install --upgrade pip

pip install -r "$PREFIX"/lib/daos/TESTING/ftest/requirements-ftest.txt

if $TEST_RPMS; then
Expand Down
3 changes: 3 additions & 0 deletions utils/scripts/helpers/repo-helper-el8.sh
Original file line number Diff line number Diff line change
Expand Up @@ -134,5 +134,8 @@ if [ -n "$REPO_FILE_URL" ]; then
[global]
trusted-host = ${trusted_host}
index-url = https://${trusted_host}/artifactory/api/pypi/pypi-proxy/simple
progress_bar = off
no_color = true
quiet = 1
EOF
fi
3 changes: 3 additions & 0 deletions utils/scripts/helpers/repo-helper-el9.sh
Original file line number Diff line number Diff line change
Expand Up @@ -130,5 +130,8 @@ if [ -n "$REPO_FILE_URL" ]; then
[global]
trusted-host = ${trusted_host}
index-url = https://${trusted_host}/artifactory/api/pypi/pypi-proxy/simple
progress_bar = off
no_color = true
quiet = 1
EOF
fi
3 changes: 3 additions & 0 deletions utils/scripts/helpers/repo-helper-leap15.sh
Original file line number Diff line number Diff line change
Expand Up @@ -178,5 +178,8 @@ if [ -n "$REPO_FILE_URL" ]; then
[global]
trusted-host = ${trusted_host}
index-url = https://${trusted_host}/artifactory/api/pypi/pypi-proxy/simple
progress_bar = off
no_color = true
quiet = 1
EOF
fi
3 changes: 3 additions & 0 deletions utils/scripts/helpers/repo-helper-ubuntu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -115,5 +115,8 @@ if [ -n "$REPO_FILE_URL" ]; then
[global]
trusted-host = ${trusted_host}
index-url = https://${trusted_host}/artifactory/api/pypi/pypi-proxy/simple
progress_bar = off
no_color = true
quiet = 1
EOF
fi
Loading