Skip UI tests during fast build 60/124760/4
authorandre.schmid <andre.schmid@est.tech>
Fri, 8 Oct 2021 11:54:44 +0000 (12:54 +0100)
committerMichael Morris <michael.morris@est.tech>
Tue, 19 Oct 2021 10:11:11 +0000 (10:11 +0000)
Skip UI tests when using maven fast-build profile.

Change-Id: I0d6b10eaddc44be0000cef0c5d8847ad68372b32
Issue-ID: SDC-3753
Signed-off-by: andre.schmid <andre.schmid@est.tech>
catalog-ui/pom.xml
openecomp-ui/pom.xml
pom.xml

index 1a03fa7..1d1fb8a 100644 (file)
                         <phase>test</phase>
                         <configuration>
                             <arguments>test</arguments>
-                            <skip>${skipTests}</skip>
+                            <skip>${maven.test.skip}</skip>
                         </configuration>
                     </execution>
                 </executions>
index 760d101..d2ff64e 100644 (file)
             <configuration>
               <yarnInheritsProxyConfigFromMaven>false</yarnInheritsProxyConfigFromMaven>
               <arguments>test-build ${jest.command}</arguments>
-              <skip>${skipTests}</skip>
+              <skip>${maven.test.skip}</skip>
             </configuration>
             <!-- for some reason does not fail on test phase -->
             <phase>test</phase>
diff --git a/pom.xml b/pom.xml
index ebdbc43..e0d5494 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -669,6 +669,7 @@ Modifications copyright (c) 2018-2019 Nokia
             </activation>
             <properties>
                 <checkstyle.skip>true</checkstyle.skip>
+                <maven.test.skip>true</maven.test.skip>
             </properties>
             <modules>
                 <module>onboarding</module>