From d979a5c4af912f08c6a4142acc8661baa38e735f Mon Sep 17 00:00:00 2001 From: Weimin Yu Date: Tue, 9 Sep 2025 18:58:20 +0000 Subject: [PATCH] Fix dependency of Gradle task for schema test 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 c0642d4896c..85c7e55adc4 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