From 39bcec3b3f14fd53618adb4a95003211aca446c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ra=C3=BAl=20Cumplido?= Date: Wed, 18 May 2022 16:19:30 +0200 Subject: [PATCH] MINOR: Fix wrongly redefining pytestmark for parquet encryption tests --- python/pyarrow/tests/parquet/test_encryption.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/python/pyarrow/tests/parquet/test_encryption.py b/python/pyarrow/tests/parquet/test_encryption.py index f5e9e76d443..924339797f0 100644 --- a/python/pyarrow/tests/parquet/test_encryption.py +++ b/python/pyarrow/tests/parquet/test_encryption.py @@ -39,8 +39,10 @@ # Marks all of the tests in this module # Ignore these with pytest ... -m 'not parquet_encryption' # Ignore these with pytest ... -m 'not parquet' -pytestmark = pytest.mark.parquet_encryption -pytestmark = pytest.mark.parquet +pytestmark = [ + pytest.mark.parquet_encryption, + pytest.mark.parquet +] @pytest.fixture(scope='module')