This commit is contained in:
parent
99180e0852
commit
25b004dcd7
10
Jenkinsfile
vendored
10
Jenkinsfile
vendored
@ -4,17 +4,17 @@ pipeline {
|
|||||||
stage('Test') {
|
stage('Test') {
|
||||||
agent {
|
agent {
|
||||||
docker {
|
docker {
|
||||||
image 'python:3.7'
|
image 'python:3.8'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
steps {
|
steps {
|
||||||
sh "pip install --user pipenv"
|
sh "pip install --no-cache-dir -t python pipenv"
|
||||||
sh "pipenv sync"
|
sh "PYTHONPATH=\$(pwd)/python PIPENV_VENV_IN_PROJECT=true python/bin/pipenv sync --sequential --dev"
|
||||||
sh 'pipenv run pytest -p no:warnings --junit-xml test-reports/results.xml'
|
sh "export PYTHONPATH=\$(pwd)/python && cd src && PIPENV_VENV_IN_PROJECT=true \${PYTHONPATH}/bin/pipenv run pytest -p no:warnings --junit-xml test-reports/results.xml"
|
||||||
}
|
}
|
||||||
post {
|
post {
|
||||||
always {
|
always {
|
||||||
junit 'test-reports/results.xml'
|
junit 'src/test-reports/results.xml'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user