changes in file and environment

This commit is contained in:
shikhar.s 2019-08-28 19:34:53 +05:30
parent 432b8aafc5
commit 24305aa251

4
Jenkinsfile vendored
View File

@ -136,7 +136,7 @@ pipeline {
echo "Test coverage"
sh ''' export PATH=${VIRTUAL_ENV}/bin:${PATH}
coverage run src/bitmessagemain.py -t 1 1 2 3
python -m coverage xml -o coverage.xml
python -m coverage xml -o PyBitmessage/coverage.xml
'''
echo "Style check"
sh ''' source activate ${BUILD_TAG}
@ -148,7 +148,7 @@ pipeline {
step([$class: 'CoberturaPublisher',
autoUpdateHealth: false,
autoUpdateStability: false,
coberturaReportFile: 'coverage.xml',
coberturaReportFile: 'PyBitmessage/coverage.xml',
failNoReports: false,
failUnhealthy: false,
failUnstable: false,