From 42a542d8c5cd8d4b663845dd3acc67550cde810b Mon Sep 17 00:00:00 2001 From: Alex Eagle Date: Tue, 17 Dec 2019 15:48:47 -0800 Subject: [PATCH] ci: fix how the jest test was disabled The bazelci config only passes the -no-bazelci-mac filter to the inner bazel --- examples/BUILD.bazel | 2 -- examples/jest/BUILD.bazel | 2 ++ 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/BUILD.bazel b/examples/BUILD.bazel index 7f240c3509..9de2ee6e24 100644 --- a/examples/BUILD.bazel +++ b/examples/BUILD.bazel @@ -113,8 +113,6 @@ example_integration_test( example_integration_test( name = "examples_jest", - # TODO: why does this fail almost all the time, but pass on local Mac? - tags = ["no-bazelci-mac"], ) example_integration_test( diff --git a/examples/jest/BUILD.bazel b/examples/jest/BUILD.bazel index 58268f9092..9ebdcf94f0 100644 --- a/examples/jest/BUILD.bazel +++ b/examples/jest/BUILD.bazel @@ -12,6 +12,8 @@ jest_test( # Windows users with permissions can use --enable_runfiles # to make this test work "no-bazelci-windows", + # TODO: why does this fail almost all the time, but pass on local Mac? + "no-bazelci-mac", ], deps = [ "babel.config.js",