Skip to content

Commit af40285

Browse files
committed
Fix 'functionalTests' task
1 parent 009950d commit af40285

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -272,14 +272,14 @@ allprojects {
272272
} else {
273273
checkPart1.configure { dependsOn 'check' }
274274
}
275+
276+
tasks.register('functionalTests') { dependsOn 'check'}
275277
}
276278

277279
project.ext.disableTasks = { String... tasknames ->
278280
for (String taskname : tasknames) {
279281
project.tasks.named(taskname).configure { enabled = false }
280282
}
281-
282-
tasks.register('functionalTests') { dependsOn 'check'}
283283
}
284284

285285
/*

0 commit comments

Comments
 (0)