Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
E
example-robot-data
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Gepetto
example-robot-data
Commits
72229d51
Commit
72229d51
authored
4 years ago
by
Guilhem Saurel
Browse files
Options
Downloads
Patches
Plain Diff
[Hector] fix typo
And activate tests again
parent
a9dea8c2
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Pipeline
#11066
passed
4 years ago
Stage: test
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
python/example_robot_data/robots_loader.py
+1
-2
1 addition, 2 deletions
python/example_robot_data/robots_loader.py
unittest/test_load.py
+2
-2
2 additions, 2 deletions
unittest/test_load.py
with
3 additions
and
4 deletions
python/example_robot_data/robots_loader.py
+
1
−
2
View file @
72229d51
...
...
@@ -3,7 +3,6 @@ import warnings
from
os.path
import
dirname
,
exists
,
join
import
numpy
as
np
import
pinocchio
as
pin
from
pinocchio.robot_wrapper
import
RobotWrapper
...
...
@@ -222,7 +221,7 @@ def loadUR(robot=5, limited=False, gripper=False):
def
loadHector
():
return
robot_loader
(
'
hector_description
'
,
"
quadroto_base.urdf
"
,
free_flyer
=
True
)
return
robot_loader
(
'
hector_description
'
,
"
quadroto
r
_base.urdf
"
,
free_flyer
=
True
)
def
loadDoublePendulum
():
...
...
This diff is collapsed.
Click to expand it.
unittest/test_load.py
+
2
−
2
View file @
72229d51
...
...
@@ -22,8 +22,8 @@ class RobotTestCase(unittest.TestCase):
def
test_double_pendulum
(
self
):
self
.
check
(
'
double_pendulum
'
,
2
,
2
)
#
def test_hector(self):
#
self.check('hector',
0
,
0
)
def
test_hector
(
self
):
self
.
check
(
'
hector
'
,
7
,
6
)
def
test_hyq
(
self
):
self
.
check
(
'
hyq
'
,
19
,
18
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment