summaryrefslogtreecommitdiff
path: root/.ci
diff options
context:
space:
mode:
authorDavid Marchand <david.marchand@redhat.com>2022-07-18 13:30:02 +0200
committerIlya Maximets <i.maximets@ovn.org>2022-07-19 17:02:36 +0200
commit81d186c1c281c40dd65b27454a002792865fa0c4 (patch)
treed15828f2b8ab30f1483dae998290fa777e35b73c /.ci
parent99587921c7c21e496fba62ab62af96796bb06830 (diff)
downloadopenvswitch-81d186c1c281c40dd65b27454a002792865fa0c4.tar.gz
ci: Prefer pip3 to install unit test dependencies.
While it looks like the right python3 versions of those dependencies seems to be installed in the CI, prefer calling this via pip3 like the rest of the script. Fixes: 445dceb88461 ("python: Introduce unit tests.") Signed-off-by: David Marchand <david.marchand@redhat.com> Signed-off-by: Ilya Maximets <i.maximets@ovn.org>
Diffstat (limited to '.ci')
-rwxr-xr-x.ci/linux-prepare.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/.ci/linux-prepare.sh b/.ci/linux-prepare.sh
index 1698a0713..16a7aec0b 100755
--- a/.ci/linux-prepare.sh
+++ b/.ci/linux-prepare.sh
@@ -43,7 +43,7 @@ if [ "$M32" ]; then
fi
# Install python test dependencies
-pip install -r python/test_requirements.txt
+pip3 install -r python/test_requirements.txt
# IPv6 is supported by kernel but disabled in TravisCI images:
# https://github.com/travis-ci/travis-ci/issues/8891