Skip to content

Commit

Permalink
Re-enable yourdfpy unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
stephane-caron committed Jan 24, 2024
1 parent b1615e8 commit 33f9bb8
Showing 1 changed file with 10 additions and 15 deletions.
25 changes: 10 additions & 15 deletions tests/test_loaders.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,9 @@
from robot_descriptions.loaders.robomeshcat import (
load_robot_description as load_robomeshcat,
)

# Disabled because of https://github.com/clemense/yourdfpy/issues/49
# See https://github.com/robot-descriptions/robot_descriptions.py/issues/43
# from robot_descriptions.loaders.yourdfpy import (
# load_robot_description as load_yourdfpy,
# )
from robot_descriptions.loaders.yourdfpy import (
load_robot_description as load_yourdfpy,
)


class TestLoaders(unittest.TestCase):
Expand Down Expand Up @@ -68,15 +65,13 @@ def test_robomeshcat(self):
)
)

# Disabled because of https://github.com/clemense/yourdfpy/issues/49
# See https://github.com/robot-descriptions/robot_descriptions.py/issues/43
# def test_yourdfpy(self):
# self.assertIsNotNone(
# load_yourdfpy(
# "upkie_description",
# commit=self.upkie_description_commit,
# )
# )
def test_yourdfpy(self):
self.assertIsNotNone(
load_yourdfpy(
"upkie_description",
commit=self.upkie_description_commit,
)
)

def test_idyntree(self):
self.assertIsNotNone(
Expand Down

0 comments on commit 33f9bb8

Please sign in to comment.