mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-07-27 07:01:27 -07:00
Add forgotten variable to handle unsupported python version
This commit is contained in:
parent
03a925f820
commit
9190df316c
1 changed files with 3 additions and 3 deletions
6
Makefile
6
Makefile
|
@ -60,10 +60,10 @@ test-integration:
|
||||||
podman restart -t 30 replica2
|
podman restart -t 30 replica2
|
||||||
while ! podman healthcheck run primary && [[ "$$SECONDS" -lt 120 ]]; do sleep 1; done
|
while ! podman healthcheck run primary && [[ "$$SECONDS" -lt 120 ]]; do sleep 1; done
|
||||||
mkdir -p .venv/$(ansible)
|
mkdir -p .venv/$(ansible)
|
||||||
python -m venv .venv/$(ansible)
|
python$(local_python_version) -m venv .venv/$(ansible)
|
||||||
source .venv/$(ansible)/bin/activate
|
source .venv/$(ansible)/bin/activate
|
||||||
python -m ensurepip
|
python$(local_python_version) -m ensurepip
|
||||||
python -m pip install --disable-pip-version-check --user https://github.com/ansible/ansible/archive/$(ansible).tar.gz
|
python$(local_python_version) -m pip install --disable-pip-version-check --user https://github.com/ansible/ansible/archive/$(ansible).tar.gz
|
||||||
-set -x; ansible-test integration $(target) -v --color --coverage --diff --docker $(docker_image) --docker-network podman $(_continue_on_errors) $(_keep_containers_alive) --python $(python); set +x
|
-set -x; ansible-test integration $(target) -v --color --coverage --diff --docker $(docker_image) --docker-network podman $(_continue_on_errors) $(_keep_containers_alive) --python $(python); set +x
|
||||||
rm tests/integration/db_engine_version
|
rm tests/integration/db_engine_version
|
||||||
rm tests/integration/connector
|
rm tests/integration/connector
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue