Skip to content

Commit

Permalink
FIXUP: scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
rjeffman committed Jun 30, 2024
1 parent 0be0335 commit 546f27f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions utils/run-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ STOP_CONTAINER="Y"
STOP_VIRTUALENV="N"
declare -a ENABLED_MODULES
declare -a ENABLED_TESTS
read -a ENABLED_MODULES <<< "${IPA_ENABLED_MODULES:-""}"
read -a ENABLED_TESTS <<< "${IPA_ENABLED_MODULES:-""}"
read -r -a ENABLED_MODULES <<< "${IPA_ENABLED_MODULES:-""}"
read -r -a ENABLED_TESTS <<< "${IPA_ENABLED_MODULES:-""}"
IMAGE_TAG="fedora-latest"
scenario="freeipa-tests"
MEMORY=3
Expand Down
2 changes: 1 addition & 1 deletion utils/shcontainer
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ start_container() {
# With docker on Ubuntu, it might take a couple of seconds
# for the container to be available.
sleep 3
# run_if_exists ansible_ping "${inventory}"
run_if_exists ansible_ping "${inventory}"
run_if_exists query_container_installed_software
}

Expand Down
2 changes: 1 addition & 1 deletion utils/shfun
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ start_python_virtual_environment() {
export STOP_VIRTUALENV="Y"
log info "Installing required tools."
log none "Upgrading: pip setuptools wheel"
pip install --quiet --upgrade pip setuptools wheel
pip install --quiet --upgrade pip setuptools 'wheel<0.38.0'
else
log info "Using current virtual environment."
fi
Expand Down

0 comments on commit 546f27f

Please sign in to comment.