From a15892d96193ce54a155677164d5d7f457825be6 Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Tue, 15 Oct 2024 08:26:59 +0200 Subject: [PATCH] build: allow pip to install packages system-wide --- tests/ci/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ci/install.sh b/tests/ci/install.sh index 7c614b23..3c15b70f 100755 --- a/tests/ci/install.sh +++ b/tests/ci/install.sh @@ -43,6 +43,6 @@ EOS snmpd snmp \ python3-pip python3-setuptools python3-wheel # For integration tests - sudo -H $(which python3) -m pip install -r tests/integration/requirements.txt + sudo -H $(which python3) -m pip install -r tests/integration/requirements.txt --break-system-packages ;; esac -- 2.39.5