You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by we...@apache.org on 2017/06/06 20:51:54 UTC

arrow git commit: ARROW-1088: [Python] Only test unicode filenames if system supports them

Repository: arrow
Updated Branches:
  refs/heads/master 402baa4ec -> ac540758c


ARROW-1088: [Python] Only test unicode filenames if system supports them

Author: Jeff Knupp <je...@jeffknupp.com>

Closes #727 from jeffknupp/fmaster and squashes the following commits:

c19b3dec [Jeff Knupp] ARROW-1088: [Python] Only test unicode filenames if system supports them


Project: http://git-wip-us.apache.org/repos/asf/arrow/repo
Commit: http://git-wip-us.apache.org/repos/asf/arrow/commit/ac540758
Tree: http://git-wip-us.apache.org/repos/asf/arrow/tree/ac540758
Diff: http://git-wip-us.apache.org/repos/asf/arrow/diff/ac540758

Branch: refs/heads/master
Commit: ac540758c7c013b2ffc7eb3d1e80ce6fb429de03
Parents: 402baa4
Author: Jeff Knupp <je...@jeffknupp.com>
Authored: Tue Jun 6 16:51:49 2017 -0400
Committer: Wes McKinney <we...@twosigma.com>
Committed: Tue Jun 6 16:51:49 2017 -0400

----------------------------------------------------------------------
 python/pyarrow/tests/test_feather.py | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/arrow/blob/ac540758/python/pyarrow/tests/test_feather.py
----------------------------------------------------------------------
diff --git a/python/pyarrow/tests/test_feather.py b/python/pyarrow/tests/test_feather.py
index 287e0da..71e4fee 100644
--- a/python/pyarrow/tests/test_feather.py
+++ b/python/pyarrow/tests/test_feather.py
@@ -355,6 +355,7 @@ class TestFeatherReader(unittest.TestCase):
         expected = df.rename(columns=str)
         self._check_pandas_roundtrip(df, expected)
 
+    @pytest.mark.skipif(not os.path.supports_unicode_filenames, reason='unicode filenames not supported')
     def test_unicode_filename(self):
         # GH #209
         name = (b'Besa_Kavaj\xc3\xab.feather').decode('utf-8')