Unignores integration test

This commit is contained in:
Philipp Czora 2017-10-05 12:47:23 +02:00
parent 3ca5d64a22
commit 0f708a3709
2 changed files with 2 additions and 3 deletions

4
Jenkinsfile vendored
View file

@ -21,7 +21,7 @@ node {
mvn "${jacoco}:prepare-agent test ${jacoco}:report"
// Archive JUnit results, if any
junit allowEmptyResults: true, testResults: '**/target/failsafe-reports/TEST-*.xml'
junit allowEmptyResults: true, testResults: '**/target/surefire-reports/TEST-*.xml'
}
stage('Integration Test') {
@ -29,7 +29,7 @@ node {
mvn "${jacoco}:prepare-agent-integration failsafe:integration-test ${jacoco}:report-integration"
// Archive JUnit results, if any
junit allowEmptyResults: true, testResults: '**/target/surefire-reports/TEST-*.xml'
junit allowEmptyResults: true, testResults: '**/target/failsafe-reports/TEST-*.xml'
}
stage('SonarQube Analysis') {

View file

@ -12,7 +12,6 @@ import static org.assertj.core.api.Assertions.assertThat;
@RunWith(SpringRunner.class)
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
@Ignore
public class OwnerControllerITCase {
@Autowired