Skip to content

Commit

Permalink
Passes tests
Browse files Browse the repository at this point in the history
  • Loading branch information
drculhane committed Feb 27, 2025
1 parent 7653f7f commit b2a0b8a
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions tests/scipy/scipy_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@

from arkouda.client import get_max_array_rank, get_array_ranks

#DDOF = [0, 1, 2, 3, 4, 5]
DDOF = [0]
DDOF = [0, 1, 2, 3, 4, 5]
#DDOF = [0]
PAIRS = [
# (
# np.array([10000000, 20000000, 30000000, 40000000, 50000000, 60000000, 70000000]),
# np.array([10000000, 20000000, 30000000, 40000001, 50000000, 60000000, 70000000]),
# ),
(
np.array([10000000, 20000000, 30000000, 40000000, 50000000, 60000000, 70000000]),
np.array([10000000, 20000000, 30000000, 40000001, 50000000, 60000000, 70000000]),
),
(np.array([10000000, 20000000, 30000000, 40000000, 50000000, 60000000, 70000000]), None),
# (np.array([44, 24, 29, 3]) / 100 * 189, np.array([43, 52, 54, 40])),
(np.array([44, 24, 29, 3]) / 100 * 189, np.array([43, 52, 54, 40])),
]

# bumpup is useful for multi-dimensional testing.
Expand All @@ -37,11 +37,11 @@ class TestStats:
"lambda_",
[
"pearson",
# "log-likelihood",
# "freeman-tukey",
# "mod-log-likelihood",
# "neyman",
# "cressie-read",
"log-likelihood",
"freeman-tukey",
"mod-log-likelihood",
"neyman",
"cressie-read",
],
)
@pytest.mark.parametrize("ddof", DDOF)
Expand Down

0 comments on commit b2a0b8a

Please sign in to comment.