From fecb4126b2174faf70655e0b88e90da5f1626bb8 Mon Sep 17 00:00:00 2001 From: Googler Date: Fri, 5 Jan 2024 08:12:46 -0800 Subject: [PATCH] Automated rollback of commit d9dc4fde4c8d06498f39b54a81d4e7fa1e5b5b30. *** Reason for rollback *** Rollforward after fixing the underlying problem in https://github.com/bazelbuild/bazel/commit/9b027c88051797ada7350098ef190191b953014a *** Original change description *** Disable PyTest.testSmoke on macOS Due to https://github.com/bazelbuild/bazel/issues/20660 RELNOTES: None PiperOrigin-RevId: 595998556 Change-Id: Idddf6149a918de4408a3fda016d605380a4ab6af --- src/test/py/bazel/py_test.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/test/py/bazel/py_test.py b/src/test/py/bazel/py_test.py index a456bd877267a5..09f899053029f0 100644 --- a/src/test/py/bazel/py_test.py +++ b/src/test/py/bazel/py_test.py @@ -47,9 +47,6 @@ def createSimpleFiles(self): ]) def testSmoke(self): - if test_base.TestBase.IsDarwin(): - # Re-enable after fixing https://github.com/bazelbuild/bazel/issues/20660 - return self.createSimpleFiles() _, stdout, _ = self.RunBazel(['run', '//a:a']) self.assertIn('Hello, World', stdout)