aboutsummaryrefslogtreecommitdiffstats
path: root/integration-tests
diff options
context:
space:
mode:
authorvasraz <vasyl.razinkov@est.tech>2023-06-28 19:59:14 +0100
committerVasyl Razinkov <vasyl.razinkov@est.tech>2023-06-29 10:28:43 +0000
commit6d4057b032a30daa8388f9f1a323eae1581eb91c (patch)
tree77dababf868c5036e713b67057ce068f25a5bc82 /integration-tests
parentec12bc7580b1e46d09d44fda27b83d596d51586c (diff)
Introduce new profiles to run IT separately
Signed-off-by: Vasyl Razinkov <vasyl.razinkov@est.tech> Change-Id: I2d64360ced72bbf122d826f9cf7b5d8b90b123b5 Issue-ID: SDC-4553
Diffstat (limited to 'integration-tests')
-rw-r--r--integration-tests/pom.xml64
1 files changed, 64 insertions, 0 deletions
diff --git a/integration-tests/pom.xml b/integration-tests/pom.xml
index 9717564cdc..a2a41db32d 100644
--- a/integration-tests/pom.xml
+++ b/integration-tests/pom.xml
@@ -1053,5 +1053,69 @@ limitations under the License.
</plugins>
</build>
</profile>
+ <profile>
+ <id>run-integration-tests-api</id>
+ <properties>
+ <it.helm-validator.disabled>false</it.helm-validator.disabled>
+ <skipYamlJsonValidator>true</skipYamlJsonValidator>
+ <checkstyle.skip>true</checkstyle.skip>
+ <surefire.skip.tests>true</surefire.skip.tests>
+ <skipTest>false</skipTest>
+ </properties>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-failsafe-plugin</artifactId>
+ <configuration>
+ <forkCount>1</forkCount>
+ <reuseForks>true</reuseForks>
+ <systemProperties>
+ <property>
+ <name>testng.dtd.http</name>
+ <value>true</value>
+ </property>
+ </systemProperties>
+ <suiteXmlFiles>
+ <file>src/test/resources/ci/testSuites/backend/onapApiSanity.xml</file>
+ <file>src/test/resources/ci/testSuites/backend/helmValidatorTests.xml</file>
+ </suiteXmlFiles>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ <profile>
+ <id>run-integration-tests-ui</id>
+ <properties>
+ <it.helm-validator.disabled>false</it.helm-validator.disabled>
+ <skipYamlJsonValidator>true</skipYamlJsonValidator>
+ <checkstyle.skip>true</checkstyle.skip>
+ <surefire.skip.tests>true</surefire.skip.tests>
+ <skipTest>false</skipTest>
+ </properties>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-failsafe-plugin</artifactId>
+ <configuration>
+ <forkCount>1</forkCount>
+ <reuseForks>true</reuseForks>
+ <systemProperties>
+ <property>
+ <name>testng.dtd.http</name>
+ <value>true</value>
+ </property>
+ </systemProperties>
+ <suiteXmlFiles>
+ <file>src/test/resources/ci/testSuites/frontend/onapUiSanity.xml</file>
+ <file>src/test/resources/ci/testSuites/frontend/helmValidatorTests.xml</file>
+ </suiteXmlFiles>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
</profiles>
</project>