ci: install dependencies with user flag

This commit is contained in:
Alexander Engelsberger 2021-11-04 09:55:58 +01:00 committed by GitHub
parent 916973c3e8
commit d24f580bf0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

4
Jenkinsfile vendored
View File

@ -9,9 +9,9 @@ pipeline {
}
steps {
sh 'pip install .[all] --progress-bar off'
sh 'pip install .[all] --user --progress-bar off'
}
}
}
}
}