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:
parent
c5187e3c4b
commit
3c387c8585
|
@ -15,7 +15,7 @@ pipeline {
|
|||
}
|
||||
stage('Create a setup file...') {
|
||||
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...') {
|
||||
|
|
Loading…
Reference in New Issue