Description: skipping tests needing wiremock, which is not packaged
Author: Pierre Gruet <pgt@debian.org>
Forwarded: not-needed
Last-Update: 2023-12-14

--- a/build.gradle
+++ b/build.gradle
@@ -19,12 +19,19 @@
 
     // add SLF4J implementation for testing
     testImplementation "org.slf4j:slf4j-simple:" + slf4jVersion
-    testImplementation "org.wiremock:wiremock:3.3.1"
 
     // include htsjdk for testing some specific issues
     testImplementation "com.github.samtools:htsjdk:4.1.1"
 }
 
+sourceSets {
+    test {
+        java {
+            exclude "**/MockedIntegrationTest.java"
+        }
+    }
+}
+
 // test task
 tasks.withType(Test) {
 
