Skip to content

Commit ddd955e

Browse files
authored
Fix dependency of Gradle task for schema test (#2849)
Problem not showing up because all use cases run this test after `build`.
1 parent 6863f67 commit ddd955e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

db/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ if (project.baseSchemaTag != '') {
260260

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

0 commit comments

Comments
 (0)