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) <noreply@anthropic.com>
This commit is contained in:
Shaheen Gandhi 2026-03-17 12:32:35 -07:00
parent d6bf7135ba
commit 510edd625f

View File

@ -37,11 +37,7 @@ dependencies {
}
tasks.named<Test>("test") {
useJUnitPlatform {
if (!project.hasProperty("includeIntegration")) {
excludeTags("integration")
}
}
useJUnitPlatform()
}
configurations {