From fcf8055ae458dec9b7023e1eb565f0aeba90636b Mon Sep 17 00:00:00 2001 From: Ben Lee Date: Mon, 30 Dec 2024 16:55:35 +0000 Subject: [PATCH] Query the release target in the integration tests (#1254) * Query the release target in the integration tests * Fix --- .../io/bazel/kotlin/test/BazelIntegrationTestRunner.kt | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/main/kotlin/io/bazel/kotlin/test/BazelIntegrationTestRunner.kt b/src/main/kotlin/io/bazel/kotlin/test/BazelIntegrationTestRunner.kt index 7b13295d6..703902188 100644 --- a/src/main/kotlin/io/bazel/kotlin/test/BazelIntegrationTestRunner.kt +++ b/src/main/kotlin/io/bazel/kotlin/test/BazelIntegrationTestRunner.kt @@ -88,6 +88,14 @@ object BazelIntegrationTestRunner { "//...", *version.workspaceFlag(bzlmod) ).onFailThrow() + bazel.run( + workspace, + "--bazelrc=$bazelrc", + "query", + overrideFlag, + "@rules_kotlin//...", + *version.workspaceFlag(bzlmod) + ).onFailThrow() bazel.run( workspace, "--bazelrc=$bazelrc",