File tree Expand file tree Collapse file tree 5 files changed +0
-24
lines changed Expand file tree Collapse file tree 5 files changed +0
-24
lines changed Original file line number Diff line number Diff line change 1515# See the License for the specific language governing permissions and
1616# limitations under the License.
1717
18- import logging
1918import unittest
2019
2120from robot_descriptions ._descriptions import DESCRIPTIONS
@@ -28,10 +27,6 @@ class TestMuJoCo(unittest.TestCase):
2827 Check that all MJCF descriptions are loaded properly in MuJoCo.
2928 """
3029
31- def setUp (self ):
32- logging .basicConfig ()
33- logging .getLogger ().setLevel (logging .INFO )
34-
3530 @staticmethod
3631 def get_test_for_description (description : str ):
3732 """
@@ -45,7 +40,6 @@ def get_test_for_description(description: str):
4540 """
4641
4742 def test (self ):
48- logging .info (f"Loading { description } in MuJoCo..." )
4943 load_robot_description (description )
5044
5145 return test
Original file line number Diff line number Diff line change 1515# See the License for the specific language governing permissions and
1616# limitations under the License.
1717
18- import logging
1918import unittest
2019
2120from robot_descriptions ._descriptions import DESCRIPTIONS
@@ -28,10 +27,6 @@ class TestPinocchio(unittest.TestCase):
2827 Check that all descriptions are loaded properly in Pinocchio.
2928 """
3029
31- def setUp (self ):
32- logging .basicConfig ()
33- logging .getLogger ().setLevel (logging .INFO )
34-
3530 @staticmethod
3631 def get_test_for_description (description : str ):
3732 """
@@ -45,7 +40,6 @@ def get_test_for_description(description: str):
4540 """
4641
4742 def test (self ):
48- logging .info (f"Loading { description } in Pinocchio..." )
4943 load_robot_description (description )
5044
5145 return test
Original file line number Diff line number Diff line change 1515# See the License for the specific language governing permissions and
1616# limitations under the License.
1717
18- import logging
1918import unittest
2019
2120import pybullet
@@ -35,8 +34,6 @@ def setUp(self):
3534 """
3635 Start PyBullet simulation.
3736 """
38- logging .basicConfig ()
39- logging .getLogger ().setLevel (logging .INFO )
4037 pybullet .connect (pybullet .DIRECT )
4138
4239 def tearDown (self ):
@@ -65,7 +62,6 @@ def get_test_for_description(description: str):
6562 """
6663
6764 def test (self ):
68- logging .info (f"Loading { description } in PyBullet..." )
6965 load_robot_description (description )
7066
7167 return test
Original file line number Diff line number Diff line change 1515# See the License for the specific language governing permissions and
1616# limitations under the License.
1717
18- import logging
1918import unittest
2019
2120from robot_descriptions ._descriptions import DESCRIPTIONS
@@ -41,7 +40,6 @@ def get_test_for_description(description: str):
4140 """
4241
4342 def test (self ):
44- logging .info (f"Loading { description } in RoboMeshCat..." )
4543 load_robot_description (description )
4644
4745 return test
Original file line number Diff line number Diff line change 1515# See the License for the specific language governing permissions and
1616# limitations under the License.
1717
18- import logging
1918import unittest
2019
2120from robot_descriptions ._descriptions import DESCRIPTIONS
@@ -28,10 +27,6 @@ class TestYourdfpy(unittest.TestCase):
2827 Check that all URDF descriptions are loaded properly in yourdfpy.
2928 """
3029
31- def setUp (self ):
32- logging .basicConfig ()
33- logging .getLogger ().setLevel (logging .INFO )
34-
3530 @staticmethod
3631 def get_test_for_description (description : str ):
3732 """
@@ -45,7 +40,6 @@ def get_test_for_description(description: str):
4540 """
4641
4742 def test (self ):
48- logging .info (f"Loading { description } in yourdfpy..." )
4943 load_robot_description (description )
5044
5145 return test
You can’t perform that action at this time.
0 commit comments