Skip to content
Snippets Groups Projects
Commit fa601886 authored by Guilhem Saurel's avatar Guilhem Saurel
Browse files

tests: enable verbose mode

parent 0cc0e57b
No related branches found
No related tags found
No related merge requests found
Pipeline #29522 passed
...@@ -13,7 +13,7 @@ from example_robot_data import load_full ...@@ -13,7 +13,7 @@ from example_robot_data import load_full
class RobotTestCase(unittest.TestCase): class RobotTestCase(unittest.TestCase):
def check(self, name, expected_nq, expected_nv, one_kg_bodies=[]): def check(self, name, expected_nq, expected_nv, one_kg_bodies=[]):
"""Helper function for the real tests""" """Helper function for the real tests"""
robot, _, urdf, _ = load_full(name, display=False) robot, _, urdf, _ = load_full(name, display=False, verbose=True)
self.assertEqual(robot.model.nq, expected_nq) self.assertEqual(robot.model.nq, expected_nq)
self.assertEqual(robot.model.nv, expected_nv) self.assertEqual(robot.model.nv, expected_nv)
self.assertTrue(hasattr(robot, "q0")) self.assertTrue(hasattr(robot, "q0"))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment