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 8d006dc  ARROW-1915: [Python] Add missing parquet decorator to decimal 
tests
8d006dc is described below

commit 8d006dc44194b5e4f4c7848ebdd7f916dff2439c
Author: Bryan Cutler <[email protected]>
AuthorDate: Tue Dec 12 17:17:20 2017 -0500

    ARROW-1915: [Python] Add missing parquet decorator to decimal tests
    
    In `test_parquet.py` add the `@parquet` decorator to 2 decimal tests so 
they can be skipped.
    
    Author: Bryan Cutler <[email protected]>
    
    Closes #1415 from 
BryanCutler/python-parquet-decimal-tests-decorator-ARROW-1915 and squashes the 
following commits:
    
    822ec433 [Bryan Cutler] add missing parquet decorator to decimal tests
---
 python/pyarrow/tests/test_parquet.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/python/pyarrow/tests/test_parquet.py 
b/python/pyarrow/tests/test_parquet.py
index 79e24d8..fc8c8f0 100644
--- a/python/pyarrow/tests/test_parquet.py
+++ b/python/pyarrow/tests/test_parquet.py
@@ -1593,6 +1593,7 @@ def test_backwards_compatible_column_metadata_handling():
     tm.assert_frame_equal(result, expected[['a']].reset_index(drop=True))
 
 
+@parquet
 def test_decimal_roundtrip(tmpdir):
     num_values = 10
 
@@ -1619,6 +1620,7 @@ def test_decimal_roundtrip(tmpdir):
     tm.assert_frame_equal(result, expected)
 
 
+@parquet
 @pytest.mark.xfail(
     raises=pa.ArrowException, reason='Parquet does not support negative scale'
 )

-- 
To stop receiving notification emails like this one, please contact
['"[email protected]" <[email protected]>'].

Reply via email to