Skip to content

Commit

Permalink
Remove tests for not-yet-implemented classes
Browse files Browse the repository at this point in the history
  • Loading branch information
davidnabergoj committed Oct 13, 2023
1 parent c681f84 commit 8692cb6
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion test/test_spline.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,13 @@ def test_1d_spline(spline_class):
assert torch.allclose(log_det, -log_det_inverse, atol=1e-3)


@pytest.mark.parametrize('spline_class', [RationalQuadratic, LinearRational, Linear, Cubic, Basis])
@pytest.mark.parametrize('spline_class', [
RationalQuadratic,
LinearRational,
Linear,
# Cubic,
# Basis
])
def test_2d_spline(spline_class):
torch.manual_seed(0)
batch_shape = (3,)
Expand Down

0 comments on commit 8692cb6

Please sign in to comment.