Skip to content

Commit ac17e94

Browse files
committed
moar skips
1 parent a051c8b commit ac17e94

File tree

3 files changed

+4
-0
lines changed

3 files changed

+4
-0
lines changed

tests/integ/modin/series/test_aggregate.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ def validate_scalar_result(res1, res2):
8585
),
8686
],
8787
)
88+
@pytest.mark.skip_hybrid
8889
def test_agg_series(
8990
func, is_scalar, has_count_aggregate, data, dtype, expected_union_count
9091
):

tests/integ/modin/tools/test_to_datetime.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -385,6 +385,7 @@ def test_to_datetime_format_microsecond(self, cache):
385385
],
386386
)
387387
@sql_count_checker(query_count=1)
388+
@pytest.mark.skip_hybrid
388389
def test_to_datetime_format_time(self, cache, value, format, dt):
389390
assert (
390391
to_datetime(pd.Index([value]), format=format, cache=cache).to_pandas() == dt

tests/integ/modin/tools/test_to_numeric.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,7 @@ def test_series_to_numeric(input, dtype, expected_dtype):
109109
],
110110
)
111111
@sql_count_checker(query_count=1)
112+
@pytest.mark.skip_hybrid
112113
def test_scalar_to_numeric(input, dtype):
113114
snow = pd.to_numeric(input)
114115
assert snow.dtype == dtype
@@ -120,6 +121,7 @@ def test_scalar_to_numeric(input, dtype):
120121

121122

122123
@sql_count_checker(query_count=1)
124+
@pytest.mark.skip_hybrid
123125
def test_scalar_timedelta_to_numeric():
124126
# Test this case separately because of a bug in pandas: https://github.com/pandas-dev/pandas/issues/59944
125127
input = native_pd.Timedelta(1)

0 commit comments

Comments
 (0)