Skip to content

Commit bc5915c

Browse files
committed
Skip more tests for hybrid mode
1 parent 559ebe3 commit bc5915c

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

tests/integ/modin/index/test_index_methods.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ def test_df_index_copy(native_df):
5959

6060
@sql_count_checker(query_count=0)
6161
@pytest.mark.parametrize("native_index", NATIVE_INDEX_TEST_DATA[2:])
62+
@pytest.mark.skip_hybrid
6263
def test_index_drop(native_index):
6364
snow_index = pd.Index(native_index)
6465
labels = [native_index[0]]
@@ -85,6 +86,7 @@ def test_df_index_equals(native_df):
8586

8687

8788
@sql_count_checker(query_count=0)
89+
@pytest.mark.skip_hybrid
8890
def test_index_union():
8991
idx1 = pd.Index([1, 2, 3, 4])
9092
idx2 = pd.Index([3, 4, 5, 6])
@@ -103,6 +105,7 @@ def test_index_union():
103105

104106

105107
@sql_count_checker(query_count=0)
108+
@pytest.mark.skip_hybrid
106109
def test_index_difference():
107110
idx1 = pd.Index([2, 1, 3, 4])
108111
idx2 = pd.Index([3, 4, 5, 6])

tests/integ/modin/tools/test_to_numeric.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,7 @@ def test_scalar_timedelta_to_numeric():
129129

130130

131131
@sql_count_checker(query_count=1)
132+
@pytest.mark.skip_hybrid
132133
def test_downcast_ignored(downcast, caplog):
133134
caplog.clear()
134135
with caplog.at_level(logging.DEBUG):

0 commit comments

Comments
 (0)