You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: Prevent test_aio.py collection errors on Python 3.7
Add pytest_ignore_collect hook to skip test_aio.py entirely on Python 3.7
to prevent ImportError during test collection. The previous approach using
only pytest_collection_modifyitems was too late in the process - the error
occurred when pytest tried to import the module before skip markers could
be applied.
Both hooks are marked as safe to remove when Python 3.7 support is dropped.
0 commit comments