From 84e572f10f4f4f01ba2cabbc81cc0579cd389b69 Mon Sep 17 00:00:00 2001 From: Mpho raf Date: Tue, 1 Mar 2022 21:05:03 +0200 Subject: [PATCH] pip to upgrade for psql bin --- .gitignore | 4 ---- Jenkinsfile | 1 + 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 0d2271e..065c32b 100644 --- a/.gitignore +++ b/.gitignore @@ -35,10 +35,6 @@ var/ .installed.cfg *.egg -# Test reports -test-reports/ -test-results/ - # PyInstaller # Usually these files are written by a python script from a template diff --git a/Jenkinsfile b/Jenkinsfile index c731690..14696dd 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -36,6 +36,7 @@ pipeline { python -m venv ${PY_ENV} source ${PY_ENV}/bin/activate export PATH=${PY_ENV}/bin:${PATH} + pip install -U pip pip install -r requirements.txt python3 manage.py migrate python manage.py test