Skip to content

Commit

Permalink
Modified tests to run faster. (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
byrdie authored May 26, 2024
1 parent c1b4522 commit 23dd8b3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@
@pytest.mark.parametrize(
argnames="array",
argvalues=[
np.random.random(16),
np.random.random((16, 17)),
np.random.random((16, 17, 18)),
np.random.random(5),
np.random.random((5, 6)),
np.random.random((5, 6, 7)),
],
)
@pytest.mark.parametrize(
argnames="kernel_shape",
argvalues=[5, (5,), (5, 6), (5, 6, 7)],
argvalues=[2, (3,), (3, 4), (3, 4, 5)],
)
@pytest.mark.parametrize(
argnames="axis",
Expand Down

0 comments on commit 23dd8b3

Please sign in to comment.