Skip to content

Commit d7e08e9

Browse files
stephane-caronStéphane Caron
authored andcommitted
WIP: Switch to another test
The CI failed with a SIGTERM: ``` 2022-11-28T17:48:05.6606424Z ##[error]The runner has received a shutdown signal. This can happen when the runner service is stopped, or a manually started runner is canceled. 2022-11-28T17:48:05.6662039Z ##[error]ERROR: Got SIGTERM, handling it as a KeyboardInterrupt 2022-11-28T17:48:05.7125584Z ##[error]ERROR: got KeyboardInterrupt signal 2022-11-28T17:48:05.7138473Z ##[error]ERROR: Got SIGTERM, handling it as a KeyboardInterrupt ```
1 parent 46dae78 commit d7e08e9

File tree

1 file changed

+15
-14
lines changed

1 file changed

+15
-14
lines changed

tests/test_robomeshcat.py

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -24,24 +24,25 @@ class TestRoboMeshCat(unittest.TestCase):
2424

2525
"""
2626
Check that all descriptions are loaded properly in RoboMeshCat.
27-
"""
28-
29-
# def test_load_robot_description(self):
30-
# """
31-
# Load a robot description with RoboMeshCat.
3227
33-
# Since RoboMeshCat relies on Pinocchio, we only test it on a couple
34-
# of robot descriptions.
35-
# """
36-
# mini_cheetah = load_robot_description("mini_cheetah_description")
37-
# self.assertIsNotNone(mini_cheetah)
28+
Since RoboMeshCat relies on Pinocchio, we only test it on a couple of
29+
robot descriptions.
30+
"""
3831

39-
def test_description_with_cylinders(self):
32+
def test_load_robot_description(self):
4033
"""
41-
Load a robot description with cylinder shapes.
34+
Load a robot description with RoboMeshCat.
35+
4236
"""
43-
upkie = load_robot_description("upkie_description")
44-
self.assertIsNotNone(upkie)
37+
mini_cheetah = load_robot_description("mini_cheetah_description")
38+
self.assertIsNotNone(mini_cheetah)
39+
40+
# def test_description_with_cylinders(self):
41+
# """
42+
# Load a robot description with cylinder shapes.
43+
# """
44+
# upkie = load_robot_description("upkie_description")
45+
# self.assertIsNotNone(upkie)
4546

4647
# def test_collada_description(self):
4748
# """

0 commit comments

Comments
 (0)