From ddd955e156aff383de18e64a0ff5d2291476143a Mon Sep 17 00:00:00 2001 From: Weimin Yu Date: Thu, 16 Oct 2025 11:33:28 -0400 Subject: [PATCH] Fix dependency of Gradle task for schema test (#2849) Problem not showing up because all use cases run this test after `build`. --- db/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db/build.gradle b/db/build.gradle index c0642d489..85c7e55ad 100644 --- a/db/build.gradle +++ b/db/build.gradle @@ -260,7 +260,7 @@ if (project.baseSchemaTag != '') { // Checks if Flyway scripts can be deployed to an existing database with // an older release. Please refer to SchemaTest.java for more information. - task schemaIncrementalDeployTest(dependsOn: processResources, type: Test) { + task schemaIncrementalDeployTest(dependsOn: processTestResources, type: Test) { useJUnitPlatform() include 'google/registry/sql/flyway/SchemaTest.*' classpath = configurations.testRuntimeClasspath