aboutsummaryrefslogtreecommitdiffstats
path: root/integration-test
diff options
context:
space:
mode:
authorToine Siebelink <toine.siebelink@est.tech>2024-11-12 17:29:09 +0000
committerGerrit Code Review <gerrit@onap.org>2024-11-12 17:29:09 +0000
commite8d4ada1b904380bc5fcba339d9c68c49fb5252b (patch)
treefcee845c87fe28afee6f10ffd4634d44e9c61b4a /integration-test
parent0513e39ea945f5f530ebe6c9366cedf70052b561 (diff)
parentea5b0a88b64ed86c7a1e443bfe8e8b0477f673e6 (diff)
Merge "Configure Maven Profile for Performance Tests"
Diffstat (limited to 'integration-test')
-rw-r--r--integration-test/pom.xml25
1 files changed, 0 insertions, 25 deletions
diff --git a/integration-test/pom.xml b/integration-test/pom.xml
index b39c1987bf..7ac9460f5e 100644
--- a/integration-test/pom.xml
+++ b/integration-test/pom.xml
@@ -113,29 +113,4 @@
<scope>test</scope>
</dependency>
</dependencies>
-
- <profiles>
- <!-- Performance tests are run with maven-failsafe-plugin using a separate profile, so they will
- not affect Jacoco coverage. Heap size is set here to ensure consistent test environment. -->
- <profile>
- <id>include-performance</id>
- <properties>
- <failsafeArgLine>-Xms512m -Xmx512m</failsafeArgLine>
- </properties>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-failsafe-plugin</artifactId>
- <configuration>
- <includes>
- <include>**/*PerfTest.java</include>
- </includes>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </profile>
- </profiles>
-
</project>