changes in file

This commit is contained in:
shikhar.s 2019-08-28 19:24:08 +05:30
parent 25806d0c5c
commit d6929e8c06

30
Jenkinsfile vendored
View File

@ -160,21 +160,21 @@ pipeline {
} }
} }
stage('Unit tests') { // stage('Unit tests') {
steps { // steps {
sh ''' source activate ${BUILD_TAG} // sh ''' source activate ${BUILD_TAG}
python -m pytest --verbose --junit-xml reports/unit_tests.xml // python -m pytest --verbose --junit-xml reports/unit_tests.xml
''' // '''
} // }
post { // post {
always { // always {
// Archive unit tests for the future // // Archive unit tests for the future
junit (allowEmptyResults: true, // junit (allowEmptyResults: true,
testResults: './reports/unit_tests.xml', // testResults: './reports/unit_tests.xml',
testResults: true) // testResults: true)
} // }
} // }
} // }
stage('Test Run') { stage('Test Run') {