From 806aed63f400d0ca4c6c4770c74129f3d8733fbd Mon Sep 17 00:00:00 2001 From: Joey Perrott Date: Wed, 7 Oct 2020 13:19:33 -0700 Subject: [PATCH] test(compiler-cli): temporarily disable integrationtest (#39168) Temporarily disable the //packages/compiler-cli/integrationtest:integrationtest target while continuing to investigate its unknown failures PR Close #39168 --- packages/compiler-cli/integrationtest/BUILD.bazel | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/packages/compiler-cli/integrationtest/BUILD.bazel b/packages/compiler-cli/integrationtest/BUILD.bazel index 187cc2958b..90f5766c14 100644 --- a/packages/compiler-cli/integrationtest/BUILD.bazel +++ b/packages/compiler-cli/integrationtest/BUILD.bazel @@ -62,5 +62,10 @@ nodejs_test( "//packages/router:npm_package", ] + glob(["**/*"]), entry_point = "test.js", - tags = ["no-ivy-aot"], + tags = [ + # TODO(josephperrott): reenable or remove test after investigating the cause of failures + # on windows CI runs. + "manual", + "no-ivy-aot", + ], )