Skip to content

Commit fdb1e81

Browse files
Re-enable yourdfpy unit tests
1 parent b1615e8 commit fdb1e81

File tree

1 file changed

+10
-15
lines changed

1 file changed

+10
-15
lines changed

tests/test_loaders.py

Lines changed: 10 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,9 @@
2323
from robot_descriptions.loaders.robomeshcat import (
2424
load_robot_description as load_robomeshcat,
2525
)
26-
27-
# Disabled because of https://github.com/clemense/yourdfpy/issues/49
28-
# See https://github.com/robot-descriptions/robot_descriptions.py/issues/43
29-
# from robot_descriptions.loaders.yourdfpy import (
30-
# load_robot_description as load_yourdfpy,
31-
# )
26+
from robot_descriptions.loaders.yourdfpy import (
27+
load_robot_description as load_yourdfpy,
28+
)
3229

3330

3431
class TestLoaders(unittest.TestCase):
@@ -68,15 +65,13 @@ def test_robomeshcat(self):
6865
)
6966
)
7067

71-
# Disabled because of https://github.com/clemense/yourdfpy/issues/49
72-
# See https://github.com/robot-descriptions/robot_descriptions.py/issues/43
73-
# def test_yourdfpy(self):
74-
# self.assertIsNotNone(
75-
# load_yourdfpy(
76-
# "upkie_description",
77-
# commit=self.upkie_description_commit,
78-
# )
79-
# )
68+
def test_yourdfpy(self):
69+
self.assertIsNotNone(
70+
load_yourdfpy(
71+
"upkie_description",
72+
commit=self.upkie_description_commit,
73+
)
74+
)
8075

8176
def test_idyntree(self):
8277
self.assertIsNotNone(

0 commit comments

Comments
 (0)