From c7a4876e06cb21fccc4057c6d6e386973173d173 Mon Sep 17 00:00:00 2001 From: "shikhar.s" Date: Fri, 30 Aug 2019 13:39:47 +0530 Subject: [PATCH] chage in unit test --- Jenkinsfile | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index a4cbb7a1..d1d6adc7 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -184,21 +184,21 @@ pipeline { } } - stage('Unit tests') { - steps { - sh ''' export PATH=${VIRTUAL_ENV}/bin:${PATH} - pip install pytest - pip install psutil - python -m pytest --verbose --junit-xml results.xml - ''' - } - post { - always { - // Archive unit tests for the future - junit allowEmptyResults: true, testResults: 'results.xml' - } - } - } + // stage('Unit tests') { + // steps { + // sh ''' export PATH=${VIRTUAL_ENV}/bin:${PATH} + // pip install pytest + // pip install psutil + // python -m pytest --verbose --junit-xml results.xml + // ''' + // } + // post { + // always { + // // Archive unit tests for the future + // junit allowEmptyResults: true, testResults: 'results.xml' + // } + // } + // } // stage('Unit tests') { // steps { // sh ''' source activate ${BUILD_TAG}