From 08ef4c78249b4393c5c879e8f9b508c3f1568ed4 Mon Sep 17 00:00:00 2001 From: Richard Neumann Date: Thu, 7 Jan 2021 16:08:42 +0100 Subject: [PATCH] Added Jenkinsfile --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 31040d8..640fbb8 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -4,11 +4,11 @@ pipeline { stage('Install build dependencies') { steps { sh ''' - pip install -U --update pip pytest setuptools setuptools-git-version''' + pip install -U --upgrade pip pytest setuptools setuptools-git-version''' } } - stage('Install pytest') { + stage('Install project') { steps { sh 'python3 setup.py install --user' }