addintion of json file
This commit is contained in:
parent
a605c58c30
commit
f72adf1474
21
Jenkinsfile
vendored
21
Jenkinsfile
vendored
|
@ -184,6 +184,27 @@ pipeline {
|
|||
}
|
||||
}
|
||||
|
||||
stage ('Unit Tests') {
|
||||
steps {
|
||||
sh """
|
||||
#. venv/bin/activate
|
||||
export PATH=${VIRTUAL_ENV}/bin:${PATH}
|
||||
make unittest || true
|
||||
"""
|
||||
}
|
||||
|
||||
post {
|
||||
always {
|
||||
junit keepLongStdio: true, testResults: 'nosetests.xml'
|
||||
publishHTML target: [
|
||||
reportDir: 'PyBitmessage',
|
||||
reportFiles: 'index.html',
|
||||
reportName: 'Coverage Report - Unit Test'
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// stage('Unit tests') {
|
||||
// steps {
|
||||
// sh ''' source activate ${BUILD_TAG}
|
||||
|
|
1
index.html
Normal file
1
index.html
Normal file
|
@ -0,0 +1 @@
|
|||
index.html
|
0
nosetests.xml
Normal file
0
nosetests.xml
Normal file
Loading…
Reference in New Issue
Block a user