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

tests: check cassie with pin 2.9.1 / 2.9.2

parent bc1459dc
No related branches found
No related tags found
No related merge requests found
......@@ -50,7 +50,8 @@ class RobotTestCase(unittest.TestCase):
except ImportError:
import pinocchio
self.assertLess(int(pinocchio.__version__.split(".")[0]), 3)
pin_version = tuple(int(i) for i in pinocchio.__version__.split("."))
self.assertLess(pin_version, (2, 9, 1))
def test_double_pendulum(self):
self.check("double_pendulum", 2, 2)
......
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