summaryrefslogtreecommitdiffstats
path: root/cps-path-parser/pom.xml
diff options
context:
space:
mode:
authorToineSiebelink <toine.siebelink@est.tech>2022-12-23 10:11:38 +0000
committerToineSiebelink <toine.siebelink@est.tech>2022-12-23 10:38:03 +0000
commit83e50552e12a74acb312c196d80bcde0a3351e6a (patch)
tree286f6af9a07f57a6b827efc99023dcbb11535d3c /cps-path-parser/pom.xml
parent30d76ed37b777e642854d5ab4e94a6fc5f6af84a (diff)
Organize performance test
- Separated CpsPathUtil performance tests in dedicated file - Used smaller sample to speed up CpsPathUtil test - Increased margin on CpsModuleReferenceRepository performance test to rpevent accidental failures - Added profiles to cps path parser module - Use Regex to include any (future) perforamcne test using same naming Issue-ID: CPS-1421 Signed-off-by: ToineSiebelink <toine.siebelink@est.tech> Change-Id: I9da1614b6f067e946a4f088c6417479fa6c71988
Diffstat (limited to 'cps-path-parser/pom.xml')
-rw-r--r--cps-path-parser/pom.xml25
1 files changed, 25 insertions, 0 deletions
diff --git a/cps-path-parser/pom.xml b/cps-path-parser/pom.xml
index d9c150881..d0da105aa 100644
--- a/cps-path-parser/pom.xml
+++ b/cps-path-parser/pom.xml
@@ -89,4 +89,29 @@
</dependency>
</dependencies>
+ <profiles>
+ <profile>
+ <id>default</id>
+ <activation>
+ <activeByDefault>true</activeByDefault>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <excludes>
+ <exclude>%regex[.*PerfTest.*]</exclude>
+ </excludes>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ <profile>
+ <id>include-performance</id>
+ </profile>
+ </profiles>
+
</project>