Skip to content

Commit

Permalink
SNOW-1467815: Fix Jenkins runner regression related to test_lstrip_rs…
Browse files Browse the repository at this point in the history
…trip in test_strings (#1747)
  • Loading branch information
sfc-gh-helmeleegy authored Jun 7, 2024
1 parent 8e05e92 commit c0341ec
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions tests/integ/modin/strings/test_strings.py
Original file line number Diff line number Diff line change
Expand Up @@ -430,19 +430,14 @@ def test_slice_replace(start, stop, repl, expected):
assert_snowpark_pandas_equal_to_pandas(result, expected)


@pytest.mark.xfail(
reason="SNOW-1336091: Snowpark pandas cannot run in sprocs until modin 0.28.1 is available in conda",
strict=True,
raises=RuntimeError,
)
@pytest.mark.parametrize(
"method, exp",
[
["lstrip", ["aa ", "bb \n", np.nan, "cc "]],
["rstrip", [" aa", " bb", np.nan, "cc"]],
],
)
@sql_count_checker(query_count=8, fallback_count=1, sproc_count=1)
@sql_count_checker(query_count=1)
def test_lstrip_rstrip(method, exp):
ser = pd.Series([" aa ", " bb \n", np.nan, "cc "], dtype=object)

Expand Down

0 comments on commit c0341ec

Please sign in to comment.