Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion applications/argocd/petclinic/helm/Jenkinsfile.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ node {

stage('Test') {
// Disable database integration tests because they start docker images (which won't work in air-gapped envs and take a lot of time in demos)
mvn "test -Dmaven.test.failure.ignore=true -Dcheckstyle.skip" +
mvn "test -Dmaven.test.failure.ignore=true -Dcheckstyle.skip " +
'-Dtest=!org.springframework.samples.petclinic.MySqlIntegrationTests,!org.springframework.samples.petclinic.PostgresIntegrationTests'
}

Expand Down
2 changes: 1 addition & 1 deletion applications/argocd/petclinic/plain-k8s/Jenkinsfile.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ node {

stage('Test') {
// Disable database integration tests because they start docker images (which won't work in air-gapped envs and take a lot of time in demos)
mvn 'test -Dmaven.test.failure.ignore=true -Dcheckstyle.skip'
mvn 'test -Dmaven.test.failure.ignore=true -Dcheckstyle.skip ' +
'-Dtest=!org.springframework.samples.petclinic.MySqlIntegrationTests,!org.springframework.samples.petclinic.PostgresIntegrationTests'
}

Expand Down