diff options
author | Toine Siebelink <toine.siebelink@est.tech> | 2020-12-08 14:06:14 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-12-08 14:06:14 +0000 |
commit | b5056a392694c50d26d69e587cc55a04a2af04bd (patch) | |
tree | 3aa6dbaeabe3395205de88d961cda0b427cadf79 /cps-parent | |
parent | 9647834359b168ed8091cecaecd363cb87abe874 (diff) | |
parent | 7cca0296e855bbfaff7d14769db2fc76c5c06892 (diff) |
Merge "Persistence layer testing incl CpsModulePersistenceService testing"
Diffstat (limited to 'cps-parent')
-rw-r--r-- | cps-parent/pom.xml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/cps-parent/pom.xml b/cps-parent/pom.xml index ebd421b55a..89f9629a6f 100644 --- a/cps-parent/pom.xml +++ b/cps-parent/pom.xml @@ -94,6 +94,26 @@ </pluginManagement> </build> </profile> + <profile> + <id>skip-db-tests</id> + <activation> + <!-- exclude module tests by default till Jenkins is configured to support test containers --> + <activeByDefault>true</activeByDefault> + </activation> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <excludes> + <exclude>**/spi/impl/*Test.java</exclude> + </excludes> + </configuration> + </plugin> + </plugins> + </build> + </profile> </profiles> <dependencyManagement> |