From 6b999c42841eeb8ceb9679615b5fd5e9977cbdce Mon Sep 17 00:00:00 2001 From: sidpremkumar Date: Jul 09 2019 16:19:04 +0000 Subject: changing test case command in template --- diff --git a/openshift/sync2jira-dev-pipeline-template.yml b/openshift/sync2jira-dev-pipeline-template.yml index e1e39b6..201dbbf 100644 --- a/openshift/sync2jira-dev-pipeline-template.yml +++ b/openshift/sync2jira-dev-pipeline-template.yml @@ -221,11 +221,11 @@ objects: stage('Run unit tests') { steps { // run unit tests - sh 'nosetests-3 -v --with-xunit --xunit-file=xunit-tests.xml' + sh 'tox --result-json=xunit-tests.json' } post { always { - junit 'xunit-tests.xml' + junit 'xunit-tests.json' } } }