You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by pc...@apache.org on 2018/07/02 20:54:33 UTC

[arrow] branch master updated: ARROW-2782: [Plasma] xfail plasma hugepage test

This is an automated email from the ASF dual-hosted git repository.

pcmoritz pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/master by this push:
     new 18f31e2  ARROW-2782: [Plasma] xfail plasma hugepage test
18f31e2 is described below

commit 18f31e20b411bab6155107ba65bf67db33af1ce8
Author: Philipp Moritz <pc...@gmail.com>
AuthorDate: Mon Jul 2 13:54:24 2018 -0700

    ARROW-2782: [Plasma] xfail plasma hugepage test
    
    This should be merged as a stop gap for ARROW-2782 so we can make sure to not disrupt arrow development till we have a real fix here (it's super annoying for others to have failing tests).
    
    Author: Philipp Moritz <pc...@gmail.com>
    
    Closes #2207 from pcmoritz/xfail-hugepage-test and squashes the following commits:
    
    b4907ee3 <Philipp Moritz> fix linting
    cb86b85d <Philipp Moritz> xfail plasma hugepage test
---
 python/pyarrow/tests/test_plasma.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/python/pyarrow/tests/test_plasma.py b/python/pyarrow/tests/test_plasma.py
index 8a7f4ca..99a5d5b 100644
--- a/python/pyarrow/tests/test_plasma.py
+++ b/python/pyarrow/tests/test_plasma.py
@@ -761,6 +761,7 @@ def test_object_id_equality_operators():
     assert oid1 != 'foo'
 
 
+@pytest.mark.xfail(reason="often fails on travis")
 @pytest.mark.skipif(not os.path.exists("/mnt/hugepages"),
                     reason="requires hugepage support")
 def test_use_huge_pages():