Skip to content

Commit

Permalink
Disable PyTest.testSmoke on macOS
Browse files Browse the repository at this point in the history
Due to bazelbuild#20660

RELNOTES: None
PiperOrigin-RevId: 593115090
Change-Id: Ifc2a282dbd6dd8a3abfec987398388e5844af91c
  • Loading branch information
meteorcloudy authored and bazel-io committed Jan 3, 2024
1 parent 521bebd commit 2e6d384
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/test/py/bazel/py_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ 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)
Expand Down

0 comments on commit 2e6d384

Please sign in to comment.