We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fbdf06a commit a1fc640Copy full SHA for a1fc640
tests/loaders/test_pinocchio.py
@@ -11,7 +11,6 @@
11
12
13
class TestPinocchio(unittest.TestCase):
14
-
15
"""
16
Check that all descriptions are loaded properly in Pinocchio.
17
@@ -34,11 +33,10 @@ def test(self):
34
33
return test
35
36
37
-# Add a test function for each URDF description
+# Add a test function for each description
38
for name, description in DESCRIPTIONS.items():
39
- if description.has_urdf:
40
- setattr(
41
- TestPinocchio,
42
- f"test_{name}",
43
- TestPinocchio.get_test_for_description(name),
44
- )
+ setattr(
+ TestPinocchio,
+ f"test_{name}",
+ TestPinocchio.get_test_for_description(name),
+ )
0 commit comments