From 5ee683719a19c8865a7b80725a0adf55baa3e9c9 Mon Sep 17 00:00:00 2001 From: Elliott Sales de Andrade Date: Sun, 7 Mar 2021 04:07:32 -0500 Subject: [PATCH 1/2] Skip test_encoding_gh601 on big-endian machines. Signed-off-by: Elliott Sales de Andrade --- dask/dataframe/io/tests/test_csv.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dask/dataframe/io/tests/test_csv.py b/dask/dataframe/io/tests/test_csv.py index b50a727b..0ac1df4c 100644 --- a/dask/dataframe/io/tests/test_csv.py +++ b/dask/dataframe/io/tests/test_csv.py @@ -2,6 +2,7 @@ import gzip import os import warnings from io import BytesIO, StringIO +import sys from unittest import mock import pytest @@ -1146,6 +1147,7 @@ def test_read_csv_with_datetime_index_partitions_n(): xfail_pandas_100 = pytest.mark.xfail(reason="https://github.com/dask/dask/issues/5787") +@pytest.mark.skipif(sys.byteorder == 'big', reason='Broken on big-endian machines') @pytest.mark.parametrize( "encoding", [ -- 2.40.0