1
0
mirror of https://github.com/google/nomulus synced 2026-01-09 15:43:52 +00:00

Make :core:cleanTest depend on FilterTests (#1342)

* Make :core:cleanTest depend on FilterTests

The "cleanTest" target doesn't work for our specialized tests derived from
FilterTest.  Make them all explicit dependencies of cleanTest so we can reset
the tests from a single target.
This commit is contained in:
Michael Muller
2021-09-30 10:46:36 -04:00
committed by GitHub
parent fbbe014e96
commit 3a177f36b1

View File

@@ -1111,6 +1111,10 @@ test {
// TODO(weiminyu): Remove dependency on sqlIntegrationTest
}.dependsOn(fragileTest, outcastTest, standardTest, registryToolIntegrationTest, sqlIntegrationTest)
// When we override tests, we also break the cleanTest command.
cleanTest.dependsOn(cleanFragileTest, cleanOutcastTest, cleanStandardTest,
cleanRegistryToolIntegrationTest, cleanSqlIntegrationTest)
project.build.dependsOn devtool
project.build.dependsOn buildToolImage
project.build.dependsOn ':stage'