1
0

PIT-Timeout durch Integrationstest bereinigt

This commit is contained in:
2026-04-09 12:40:29 +02:00
parent ca91749a04
commit 3f1d50d356

View File

@@ -76,6 +76,18 @@
<build> <build>
<plugins> <plugins>
<plugin>
<groupId>org.pitest</groupId>
<artifactId>pitest-maven</artifactId>
<configuration>
<!-- Exclude heavy pipeline integration tests from mutation analysis.
These tests run the full batch pipeline (SQLite, PDFBox, filesystem)
and exceed PIT minion timeouts. They remain in the normal surefire run. -->
<excludedTestClasses>
<param>de.gecheckt.pdf.umbenenner.adapter.out.ai.AnthropicClaudeAdapterIntegrationTest</param>
</excludedTestClasses>
</configuration>
</plugin>
<plugin> <plugin>
<groupId>org.jacoco</groupId> <groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId> <artifactId>jacoco-maven-plugin</artifactId>