From 6b33655944f17a299974c8e27a1178f927d1d10e Mon Sep 17 00:00:00 2001 From: Mpho raf Date: Tue, 22 Jun 2021 22:58:56 +0200 Subject: [PATCH] running pip in user space --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 094a4da..4b91092 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -29,7 +29,7 @@ pipeline { args '-e DJANGO_SETTINGS_MODULE="locallibrary.settings"'} } steps { - sh 'pip3 install -r requirements.txt' + sh 'pip3 install --user -r requirements.txt' sh 'python -m pytest catalog/tests/' sh 'python -m xmlrunner discover -p *_test.py' }