Xunit back to node
parent
98f15df11d
commit
33025e84ab
|
@ -73,11 +73,13 @@ pipeline {
|
||||||
}
|
}
|
||||||
post {
|
post {
|
||||||
always {
|
always {
|
||||||
// Publish JUnit test results
|
node {
|
||||||
xunit (
|
// Publicar los resultados de las pruebas de PHPUnit
|
||||||
thresholds: [ skipped(failureThreshold: '0') , failed(failureThreshold: '0') ],
|
xunit (
|
||||||
tools: [ PHPUnit(pattern: 'phpunit.xml') ]
|
thresholds: [ skipped(failureThreshold: '0'), failed(failureThreshold: '0') ],
|
||||||
)
|
tools: [ PHPUnit(pattern: 'phpunit.xml') ]
|
||||||
|
)
|
||||||
|
}
|
||||||
// Remove containers
|
// Remove containers
|
||||||
sh 'docker compose -f ${DOCKER_COMPOSE_FILE} down'
|
sh 'docker compose -f ${DOCKER_COMPOSE_FILE} down'
|
||||||
sh 'docker compose -f ${DOCKER_COMPOSE_FILE} rm -f'
|
sh 'docker compose -f ${DOCKER_COMPOSE_FILE} rm -f'
|
||||||
|
|
Loading…
Reference in New Issue