Skip to content

Commit

Permalink
Disable fread tests on ppc64 machines
Browse files Browse the repository at this point in the history
  • Loading branch information
st-pasha committed Dec 8, 2020
1 parent d7453e0 commit a6533be
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/fread/test-fread-large.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,8 @@ def test_h2o3_smalldata(f):
params = {}
if is_ppc64():
params["nthreads"] = 8
pytest.skip("Fread tests disabled on PPC64")
return
if "test_pubdev3589" in f:
params["sep"] = "\n"
if "single_quotes_mixed.csv" in f:
Expand Down Expand Up @@ -258,6 +260,8 @@ def test_h2o3_bigdata(f):
params = {"memory_limit": MEMORY_LIMIT}
if is_ppc64():
params["nthreads"] = 8
pytest.skip("Fread tests disabled on PPC64")
return
if any(ff in f for ff in filledna_files):
params["fill"] = True
if "imagenet/cat_dog_mouse.tgz" in f:
Expand Down

0 comments on commit a6533be

Please sign in to comment.