Skip to content

Commit

Permalink
Fix tests in test_stats after implementing numeric_only
Browse files Browse the repository at this point in the history
  • Loading branch information
martinfalisse committed Apr 11, 2022
1 parent fb37db0 commit 84f096c
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions python/cudf/cudf/tests/test_stats.py
Original file line number Diff line number Diff line change
Expand Up @@ -262,9 +262,6 @@ def test_kurtosis(data, null_flag):
expected = pdata.kurt()
np.testing.assert_array_almost_equal(got, expected)

with pytest.raises(NotImplementedError):
data.kurt(numeric_only=False)


@pytest.mark.parametrize(
"data",
Expand Down Expand Up @@ -298,9 +295,6 @@ def test_skew(data, null_flag):
got = got if np.isscalar(got) else got.to_numpy()
np.testing.assert_array_almost_equal(got, expected)

with pytest.raises(NotImplementedError):
data.skew(numeric_only=False)


@pytest.mark.parametrize("dtype", params_dtypes)
@pytest.mark.parametrize("num_na", [0, 1, 50, 99, 100])
Expand Down

0 comments on commit 84f096c

Please sign in to comment.