We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0744aec commit 41ca6e7Copy full SHA for 41ca6e7
pandas/tests/groupby/test_function.py
@@ -478,7 +478,9 @@ def scipy_sem(*args, **kwargs):
478
('first', lambda x: x.iloc[0]),
479
('last', lambda x: x.iloc[-1]),
480
('count', np.size),
481
- pytest.param('sem', scipy_sem, mark=td._skip_if_no_scipy)])
+ pytest.param(
482
+ 'sem', scipy_sem, marks=[pytest.mark.skipif(
483
+ td._skip_if_no_scipy(), reason='scipy not installed')])])
484
def test_ops_general(op, targop):
485
df = DataFrame(np.random.randn(1000))
486
labels = np.random.randint(0, 50, size=1000).astype(float)
0 commit comments