Skip to content

Commit

Permalink
fix full testing
Browse files Browse the repository at this point in the history
  • Loading branch information
rusty1s committed Apr 6, 2022
1 parent 8281be4 commit 2f6fdef
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/utils/test_geodesic.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
from math import sqrt

import pytest
import torch

from torch_geometric.testing import withPackage
from torch_geometric.utils import geodesic_distance


@withPackage('gdist')
@pytest.mark.skip(reason="No way of currently testing this")
def test_geodesic_distance():
pos = torch.Tensor([[0, 0, 0], [2, 0, 0], [0, 2, 0], [2, 2, 0]])
face = torch.tensor([[0, 1, 3], [0, 2, 3]]).t()
Expand Down

0 comments on commit 2f6fdef

Please sign in to comment.