Update Jenkinsfile

pull/30/head
Pablo Fuente Pérez 2018-02-22 17:08:23 +01:00 committed by GitHub
parent 9962f29733
commit c70756b882
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ node('container') {
sh 'cd ~/openvidu/openvidu-test-e2e && mvn -DAPP_URL=https://172.17.0.1:4200/ -DOPENVIDU_URL=https://172.17.0.1:8443/ -DREMOTE_URL_CHROME=http://172.17.0.1:4444/wd/hub/ -DREMOTE_URL_FIREFOX=http://172.17.0.1:4445/wd/hub/ test' sh 'cd ~/openvidu/openvidu-test-e2e && mvn -DAPP_URL=https://172.17.0.1:4200/ -DOPENVIDU_URL=https://172.17.0.1:8443/ -DREMOTE_URL_CHROME=http://172.17.0.1:4444/wd/hub/ -DREMOTE_URL_FIREFOX=http://172.17.0.1:4445/wd/hub/ test'
} }
stage ('Test report') { stage ('Test report') {
junit "~/openvidu/openvidu-test-e2e/target/surefire-reports/TEST-*.xml" junit "**/target/surefire-reports/TEST-*.xml"
} }
} }
} }