34 lines
1.0 KiB
Diff
34 lines
1.0 KiB
Diff
From dd144df006fa18c53547e54ff2623e47e6ca9520 Mon Sep 17 00:00:00 2001
|
|
From: Elliott Sales de Andrade <quantum.analyst@gmail.com>
|
|
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 <quantum.analyst@gmail.com>
|
|
---
|
|
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 abf90ca4..fb4358f3 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
|
|
@@ -1116,6 +1117,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.36.1
|
|
|