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:
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user