Skip to content

Commit

Permalink
skip pytest
Browse files Browse the repository at this point in the history
  • Loading branch information
galipremsagar committed May 21, 2024
1 parent e45ce4e commit 3e85eaf
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions python/cudf/cudf/tests/test_orc.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import datetime
import decimal
import os
import platform
import random
from io import BytesIO
from string import ascii_lowercase
Expand Down Expand Up @@ -1834,15 +1833,12 @@ def test_orc_writer_negative_timestamp(negative_timestamp_df):
)


@pytest.mark.xfail(
condition=platform.system() == "Linux" and "rocky" in platform.release(),
@pytest.mark.skip(
reason="Bug specific to rockylinux8: https://github.com/rapidsai/cudf/issues/15802",
)
def test_orc_reader_apache_negative_timestamp(datadir):
path = datadir / "TestOrcFile.apache_timestamp.orc"
print(platform.system())
print(platform.release())
print(platform.uname())

pdf = pd.read_orc(path)
gdf = cudf.read_orc(path)

Expand Down

0 comments on commit 3e85eaf

Please sign in to comment.