chage in unit test

This commit is contained in:
shikhar.s 2019-08-29 15:47:28 +05:30
parent a10f926845
commit 670f022aba
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

@ -187,13 +187,13 @@ pipeline {
stage('Unit tests') {
steps {
sh ''' source activate ${BUILD_TAG}
python -m pytest --verbose --junit-xml result.xml
python -m pytest --verbose --junit-xml results.xml
'''
}
post {
always {
// Archive unit tests for the future
junit allowEmptyResults: true, testResults: 'result.xml', fingerprint: true
junit allowEmptyResults: true, testResults: 'test-reports/results.xml'
}
}
}