From 534d55d6f3ca330c2cf2e6056f3f2c3ff65c1b51 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20Z=C3=B6ller?= Date: Fri, 2 Jan 2026 17:50:06 +0100 Subject: [PATCH] Add Maven profile to skip integration tests when Docker unavailable MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Integration tests using Testcontainers require Docker. This profile allows running unit tests in CI/CD environments or local setups without Docker. Usage: mvn test -P skip-integration-tests Results: - 97 unit tests pass - 18 integration tests skipped (require Docker) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- pom.xml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/pom.xml b/pom.xml index 6e76fe5..19ea560 100644 --- a/pom.xml +++ b/pom.xml @@ -208,4 +208,25 @@ + + + + skip-integration-tests + + + + org.apache.maven.plugins + maven-surefire-plugin + + + **/*IntegrationTest.java + **/ActivityImageServiceTest.java + + + + + + + + \ No newline at end of file