1
0
mirror of https://github.com/google/nomulus synced 2025-12-23 06:15:42 +00:00

Fix dependency of Gradle task for schema test (#2849)

Problem not showing up because all use cases run this test after
`build`.
This commit is contained in:
Weimin Yu
2025-10-16 11:33:28 -04:00
committed by GitHub
parent 6863f678f1
commit ddd955e156

View File

@@ -260,7 +260,7 @@ if (project.baseSchemaTag != '') {
// Checks if Flyway scripts can be deployed to an existing database with // Checks if Flyway scripts can be deployed to an existing database with
// an older release. Please refer to SchemaTest.java for more information. // an older release. Please refer to SchemaTest.java for more information.
task schemaIncrementalDeployTest(dependsOn: processResources, type: Test) { task schemaIncrementalDeployTest(dependsOn: processTestResources, type: Test) {
useJUnitPlatform() useJUnitPlatform()
include 'google/registry/sql/flyway/SchemaTest.*' include 'google/registry/sql/flyway/SchemaTest.*'
classpath = configurations.testRuntimeClasspath classpath = configurations.testRuntimeClasspath