jjb: normand: use virtualenv instead of venv
authorMichael Jeanson <mjeanson@efficios.com>
Tue, 10 Oct 2023 17:44:04 +0000 (13:44 -0400)
committerMichael Jeanson <mjeanson@efficios.com>
Tue, 10 Oct 2023 17:45:38 +0000 (13:45 -0400)
Virtualenv is installed on the nodes, not venv currently.

Change-Id: I2875888a792d484c8bacb5a1f94aea807c0bd949
Signed-off-by: Michael Jeanson <mjeanson@efficios.com>
scripts/normand/build.sh

index 07148057f71cf6079d897974f8c8a6308772a2ba..db3aaa26859190c4ebd63a01519bb0f129b7dc98 100755 (executable)
@@ -12,14 +12,14 @@ if [[ -d "$VENV" ]]; then
 fi
 
 # Create virtual environment and enter it
-python3 -m venv "$VENV"
+virtualenv -p python3 "$VENV"
 set +u
 # shellcheck disable=SC1090,SC1091
 . "$VENV/bin/activate"
 set -u
 
 # Install Poetry and pytest
-pip install --quiet poetry pytest
+pip install poetry pytest
 
 # Install the cloned version of Normand.
 #
This page took 0.026263 seconds and 4 git commands to generate.