diff options
author | ToineSiebelink <toine.siebelink@est.tech> | 2022-12-23 10:11:38 +0000 |
---|---|---|
committer | ToineSiebelink <toine.siebelink@est.tech> | 2022-12-23 10:38:03 +0000 |
commit | 83e50552e12a74acb312c196d80bcde0a3351e6a (patch) | |
tree | 286f6af9a07f57a6b827efc99023dcbb11535d3c /cps-path-parser/pom.xml | |
parent | 30d76ed37b777e642854d5ab4e94a6fc5f6af84a (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.xml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/cps-path-parser/pom.xml b/cps-path-parser/pom.xml index d9c150881d..d0da105aae 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> |