Skip to content

Commit

Permalink
Speed up test. (#111)
Browse files Browse the repository at this point in the history
  • Loading branch information
mlondschien authored Aug 21, 2024
1 parent bfd62ba commit 8f829a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_summary.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
],
)
@pytest.mark.parametrize(
"n, mx, k, mc, fit_intercept", [(100, 2, 3, 0, False), (100, 4, 10, 2, True)]
"n, mx, k, mc, fit_intercept", [(100, 2, 3, 0, False), (1000, 4, 10, 2, True)]
)
def test_kclass_summary(test, n, mx, k, mc, fit_intercept):
Z, X, y, C, _, _ = simulate_gaussian_iv(
Expand Down

0 comments on commit 8f829a1

Please sign in to comment.