From 510edd625f15317fc5d610d93bc440b0a65738a4 Mon Sep 17 00:00:00 2001 From: Shaheen Gandhi Date: Tue, 17 Mar 2026 12:32:35 -0700 Subject: [PATCH] Remove unused integration test tag from lib/build.gradle.kts The excludeTags("integration") block was added but no tests use the @Tag("integration") annotation. Revert to upstream's simple useJUnitPlatform() call. Co-Authored-By: Claude Opus 4.6 (1M context) --- lib/build.gradle.kts | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/lib/build.gradle.kts b/lib/build.gradle.kts index be1c26f4..45237064 100644 --- a/lib/build.gradle.kts +++ b/lib/build.gradle.kts @@ -37,11 +37,7 @@ dependencies { } tasks.named("test") { - useJUnitPlatform { - if (!project.hasProperty("includeIntegration")) { - excludeTags("integration") - } - } + useJUnitPlatform() } configurations {