Skip to content

Commit cdbe0e9

Browse files
Disable yourdfpy in loader fixture directly
1 parent acabd40 commit cdbe0e9

File tree

2 files changed

+17
-13
lines changed

2 files changed

+17
-13
lines changed

tests/test_loaders.py

Lines changed: 16 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
import unittest
2020

2121
import pybullet
22+
2223
from robot_descriptions.loaders.idyntree import (
2324
load_robot_description as load_idyntree,
2425
)
@@ -34,9 +35,12 @@
3435
from 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

4246
class 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(

tox.ini

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,7 @@ deps =
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
2422
commands =
2523
coverage erase
2624
coverage run -m unittest tests

0 commit comments

Comments
 (0)