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