Commits


Wes McKinney authored and Krisztián Szűcs committed 1aecb987790
ARROW-4179: [Python] Use more public API to determine whether a test has a pytest mark or not There was an internal API change in pytest 4.1.0 that resulted in our pytest configuration logic failing to check if marks were set or not on unit tests. I confirmed that the following fixes the problem both on pytest 4.0.x (where things still worked) and 4.1.0 (when things broke) Author: Wes McKinney <wesm+git@apache.org> Closes #3333 from wesm/ARROW-4179 and squashes the following commits: 646c1cb2 <Wes McKinney> Use iter_markers to get a list of marks for each unit test since the behavior of item.obj changed