From a10f9268450fac006ae37cf27bf65e6020fc9f33 Mon Sep 17 00:00:00 2001 From: "shikhar.s" Date: Thu, 29 Aug 2019 15:45:12 +0530 Subject: [PATCH] chage in unit test --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index fa6c1655..0a172d96 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -187,13 +187,13 @@ pipeline { stage('Unit tests') { steps { sh ''' source activate ${BUILD_TAG} - python -m pytest --verbose --junit-xml results.xml + python -m pytest --verbose --junit-xml result.xml ''' } post { always { // Archive unit tests for the future - junit allowEmptyResults: true, testResults: 'results.xml', fingerprint: true + junit allowEmptyResults: true, testResults: 'result.xml', fingerprint: true } } }