Commits


Dmitry Kalinkin authored and Antoine Pitrou committed 8125a8b86a1
ARROW-13504: [Python] Move marks from fixtures to individual tests/params https://issues.apache.org/jira/browse/ARROW-13504 The problem is that tests should be skippable with pytest pyarrow/tests -m "(not s3)" but that doesn't deselect all the s3 tests currently. The issue is that applying marks to fixtures is not currently supported: https://github.com/pytest-dev/pytest/issues/1368 This removes marks from fixtures to avoid confusion that this dead code may cause. Closes #10837 from veprbl/pr/ARROW-13504 Authored-by: Dmitry Kalinkin <dmitry.kalinkin@gmail.com> Signed-off-by: Antoine Pitrou <antoine@python.org>