jorisvandenbossche commented on code in PR #13147: URL: https://github.com/apache/arrow/pull/13147#discussion_r875953997
########## python/pyarrow/tests/parquet/test_encryption.py: ########## @@ -38,7 +38,9 @@ # 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 Review Comment: Ah, we can't assign two marks this way (it is redefining the same variable), it should be something like `pytestmark = [..., ...]` I think -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org