Skip to content

Commit c312889

Browse files
committed
Add a verifyVersions to the test FW (#47192)
The test FW has a method to check that it's implementation of getting index and wire compatible versions as well as reasoning about which version is released or not produces the same rezults as the simillar implementation in the build. This PR adds the `verifyVersions` task to the test FW so we have one task to check everything related to versions.
1 parent f9e5be2 commit c312889

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

test/framework/build.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,3 +74,7 @@ unitTest {
7474
task integTest(type: RandomizedTestingTask) {
7575
include "**/*IT.class"
7676
}
77+
78+
tasks.register("verifyVersions") {
79+
dependsOn test
80+
}

0 commit comments

Comments
 (0)