Skip to content

Commit 58412d3

Browse files
committed
Only fail some tests
1 parent 26e82e8 commit 58412d3

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

tests/test_spline.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,9 @@ def test_evaluation(self):
2727
spline = BSplineSE3(self.control_poses)
2828
nt.assert_almost_equal(spline(0).A, self.control_poses[0].A)
2929
nt.assert_almost_equal(spline(1).A, self.control_poses[-1].A)
30-
assert False
30+
import sys
31+
if sys.platform.startswith("darwin"):
32+
assert False
3133

3234
@pytest.mark.skipif(os.environ.get("CI") == "true", reason="no display in CI")
3335
def test_visualize(self):

0 commit comments

Comments
 (0)