Fix bug in Jenkinsfile

The "create setup file" failed because coverage module was not found.
It is installed in the virtualenv so the command load the venv first now.
This commit is contained in:
Sylvain Tricot 2019-12-06 13:49:28 +01:00
parent c5187e3c4b
commit 3c387c8585
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -15,7 +15,7 @@ pipeline {
} }
stage('Create a setup file...') { stage('Create a setup file...') {
steps { steps {
sh '. ~/.profile && make selfex VERBOSE=1 PYTHONPATH=$PWD/src' sh '. ~/.profile && . ./ci_venv/bin/activate && make selfex VERBOSE=1 PYTHONPATH=$PWD/src'
} }
} }
stage('Test installation...') { stage('Test installation...') {