Skip to content

Commit

Permalink
chore: remove unused test
Browse files Browse the repository at this point in the history
  • Loading branch information
jolars committed Feb 7, 2024
1 parent 1e42233 commit 9617e51
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions tests/test_basic.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,19 +58,3 @@ def test_sparse_dense_standardized():

np.testing.assert_array_almost_equal(coef_sparse, coef_dense)
np.testing.assert_array_almost_equal(coef_dense, coef_true)


def test_failing_problem():
"""Test care for problem that failed at some point."""
n = 100
p = 3

seed = 31
rng = default_rng(seed)

x = rng.standard_normal((n, p))
beta = rng.standard_normal(p)
y = x @ beta + rng.standard_normal(n)

model = Slope(alpha=1.0)
model.fit(x, y)

0 comments on commit 9617e51

Please sign in to comment.