Skip to content

Commit

Permalink
Update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
diegoferigo committed Sep 9, 2020
1 parent 6f4cb69 commit c67a3b0
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 11 deletions.
9 changes: 4 additions & 5 deletions bindings/python/tests/geometry.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,12 @@
# This test is meant to be executed from the build,
# so we add in sys.path the location of iDynTree.py and _iDynTree.so
# TODO: this probably does not work on Windows, fix it
sys.path.append("../../python/");
sys.path.append("../../../lib/python/");
sys.path.append("../../../lib/python/Debug/");

sys.path.append("../../python/")
sys.path.append("../../../lib/python/")
sys.path.append("../../../lib/python/Debug/")

import unittest
import iDynTree
from idyntree import iDynTree
import random

class PositionTest(unittest.TestCase):
Expand Down
2 changes: 1 addition & 1 deletion bindings/python/tests/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

import unittest
import numpy as np
import iDynTree
from idyntree import iDynTree
import random

class HelpersTest(unittest.TestCase):
Expand Down
9 changes: 4 additions & 5 deletions bindings/python/tests/joints.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,12 @@
# This test is meant to be executed from the build,
# so we add in sys.path the location of iDynTree.py and _iDynTree.so
# TODO: this probably does not work on Windows, fix it
sys.path.append("../../python/");
sys.path.append("../../../lib/python/");
sys.path.append("../../../lib/python/Debug/");

sys.path.append("../../python/")
sys.path.append("../../../lib/python/")
sys.path.append("../../../lib/python/Debug/")

import unittest
import iDynTree
from idyntree import iDynTree
import random

class JointTest(unittest.TestCase):
Expand Down

0 comments on commit c67a3b0

Please sign in to comment.