File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 22pytest configuration and fixtures.
33"""
44
5- # Import compatibility shim FIRST before any other imports
6- import pytest_xprocess_compat # noqa: F401
7-
85import asyncio
96from typing import Generator
107
118import pytest
129
10+ # Import compatibility shim FIRST before any other imports
11+ import pytest_xprocess_compat # noqa: F401, isort:skip
12+
1313# Configure pytest plugins to load our shim first
1414pytest_plugins = ["pytest_plugin_compat" ]
1515
Original file line number Diff line number Diff line change 1010sys .path .insert (0 , os .path .dirname (__file__ ))
1111
1212# Import compatibility shim BEFORE importing pytest
13- import pytest_xprocess_compat # noqa: F401, E402
13+ import pytest_xprocess_compat # noqa: F401, E402, isort:skip
1414import pytest # noqa: E402
1515
1616if __name__ == "__main__" :
You can’t perform that action at this time.
0 commit comments