Skip to content

Commit

Permalink
[py visualization] Revert macOS bin-install disable
Browse files Browse the repository at this point in the history
  • Loading branch information
nicole.cheetham committed Nov 14, 2024
1 parent 3613367 commit bad1513
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@

class TestVisualizationInstalled(unittest.TestCase):

# TODO(#21023) This test is a bit too tricky in CI.
@unittest.skipIf(sys.platform == "darwin", "Skipped for tricky macOS CI")
def test_meldis_help(self):
"""Ensures we can call `./bin/meldis --help` from install."""
# Get install directory.
Expand All @@ -19,8 +17,6 @@ def test_meldis_help(self):
text = install_test_helper.check_output([bin_path, "--help"])
self.assertIn("usage: meldis ", text)

# TODO(#21023) This test is a bit too tricky in CI.
@unittest.skipIf(sys.platform == "darwin", "Skipped for tricky macOS CI")
def test_model_visualizer_help(self):
"""Ensures we can call `./bin/model_visualizer --help` from install."""
# Get install directory.
Expand All @@ -31,8 +27,6 @@ def test_model_visualizer_help(self):
text = install_test_helper.check_output([bin_path, "--help"])
self.assertIn("usage: model_visualizer ", text)

# TODO(#21023) This test is a bit too tricky in CI.
@unittest.skipIf(sys.platform == "darwin", "Skipped for tricky macOS CI")
def test_drake_models_meshes(self):
"""Ensures that the package://drake_models/... can be found by testing
a model that uses a meshfile from that location.
Expand Down

0 comments on commit bad1513

Please sign in to comment.