File tree Expand file tree Collapse file tree 2 files changed +17
-13
lines changed Expand file tree Collapse file tree 2 files changed +17
-13
lines changed Original file line number Diff line number Diff line change 1919import unittest
2020
2121import pybullet
22+
2223from robot_descriptions .loaders .idyntree import (
2324 load_robot_description as load_idyntree ,
2425)
3435from robot_descriptions .loaders .robomeshcat import (
3536 load_robot_description as load_robomeshcat ,
3637)
37- from robot_descriptions .loaders .yourdfpy import (
38- load_robot_description as load_yourdfpy ,
39- )
38+
39+ # Disabled because of https://github.com/clemense/yourdfpy/issues/49
40+ # See https://github.com/robot-descriptions/robot_descriptions.py/issues/43
41+ # from robot_descriptions.loaders.yourdfpy import (
42+ # load_robot_description as load_yourdfpy,
43+ # )
4044
4145
4246class TestLoaders (unittest .TestCase ):
@@ -76,13 +80,15 @@ def test_robomeshcat(self):
7680 )
7781 )
7882
79- def test_yourdfpy (self ):
80- self .assertIsNotNone (
81- load_yourdfpy (
82- "upkie_description" ,
83- commit = self .upkie_description_commit ,
84- )
85- )
83+ # Disabled because of https://github.com/clemense/yourdfpy/issues/49
84+ # See https://github.com/robot-descriptions/robot_descriptions.py/issues/43
85+ # def test_yourdfpy(self):
86+ # self.assertIsNotNone(
87+ # load_yourdfpy(
88+ # "upkie_description",
89+ # commit=self.upkie_description_commit,
90+ # )
91+ # )
8692
8793 def test_idyntree (self ):
8894 self .assertIsNotNone (
Original file line number Diff line number Diff line change 1818 pin >=2.6.14
1919 pybullet >=3.2.5
2020 robomeshcat >= 1.0.4
21- # Disabled "yourdfpy" loader because of https://github.com/clemense/yourdfpy/issues/49
22- # Tracked in https://github.com/robot-descriptions/robot_descriptions.py/issues/43
23- # yourdfpy >=0.0.53
21+ yourdfpy >=0.0.53
2422commands =
2523 coverage erase
2624 coverage run -m unittest tests
You can’t perform that action at this time.
0 commit comments