ci: Force pip to install packages to system environment

Without the change, pip refuses to install into system environment due to
changes outlined in PEP 668. The following error is thrown: 'error:
externally-managed-environment'.

Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
This commit is contained in:
Sunil Mohan Adapa 2023-02-28 22:24:42 +05:30 committed by James Valleroy
parent 479c129369
commit 550f9192ae
No known key found for this signature in database
GPG Key ID: 77C0C75E7B650808

View File

@ -25,4 +25,4 @@ RUN apt-get install -y build-essential \
RUN apt-get install -y $(./run --list-dependencies)
# Coverage should know that test_functional.py files are tests
RUN pip3 install splinter pytest-bdd
RUN pip3 install --break-system-packages splinter pytest-bdd