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 2019/06/14 13:04:57 UTC

[arrow] branch master updated: ARROW-5603: [Python] Register custom pytest markers to avoid warnings

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

wesm 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 1423df1  ARROW-5603: [Python] Register custom pytest markers to avoid warnings
1423df1 is described below

commit 1423df1a83173cbd9f76f81274acabdf9259cb5a
Author: Joris Van den Bossche <jo...@gmail.com>
AuthorDate: Fri Jun 14 08:04:49 2019 -0500

    ARROW-5603: [Python] Register custom pytest markers to avoid warnings
    
    https://issues.apache.org/jira/browse/ARROW-5603
    
    Author: Joris Van den Bossche <jo...@gmail.com>
    
    Closes #4570 from jorisvandenbossche/ARROW-5603-pytest-markers and squashes the following commits:
    
    72feab5b1 <Joris Van den Bossche> ARROW-5603:  register custom pytest markers to avoid warnings
---
 python/pyarrow/tests/conftest.py | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/python/pyarrow/tests/conftest.py b/python/pyarrow/tests/conftest.py
index 8a6304e..4907557 100644
--- a/python/pyarrow/tests/conftest.py
+++ b/python/pyarrow/tests/conftest.py
@@ -105,7 +105,10 @@ except ImportError:
 
 
 def pytest_configure(config):
-    pass
+    for mark in groups:
+        config.addinivalue_line(
+            "markers", mark,
+        )
 
 
 def pytest_addoption(parser):