diff options
author | 2024-11-12 17:29:09 +0000 | |
---|---|---|
committer | 2024-11-12 17:29:09 +0000 | |
commit | e8d4ada1b904380bc5fcba339d9c68c49fb5252b (patch) | |
tree | fcee845c87fe28afee6f10ffd4634d44e9c61b4a /integration-test | |
parent | 0513e39ea945f5f530ebe6c9366cedf70052b561 (diff) | |
parent | ea5b0a88b64ed86c7a1e443bfe8e8b0477f673e6 (diff) |
Merge "Configure Maven Profile for Performance Tests"
Diffstat (limited to 'integration-test')
-rw-r--r-- | integration-test/pom.xml | 25 |
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> |