python-dask/0001-Skip-test_encoding_gh6...

34 lines
1.0 KiB
Diff
Raw Normal View History

2021-08-14 08:56:37 +00:00
From 5d9cdaa75e0547d8d5edf8c995f29279688f7e11 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
2021-07-26 09:21:06 +00:00
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
2021-08-14 08:56:37 +00:00
index 48780ef8..f63d0e80 100644
--- a/dask/dataframe/io/tests/test_csv.py
+++ b/dask/dataframe/io/tests/test_csv.py
@@ -1,6 +1,7 @@
import gzip
2021-04-03 00:09:47 +00:00
import os
from io import BytesIO
+import sys
from unittest import mock
2021-07-11 07:55:07 +00:00
import pytest
2021-08-14 08:56:37 +00:00
@@ -1099,6 +1100,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",
[
--
2021-06-20 03:32:43 +00:00
2.31.1