We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2cc413 commit edf5a7dCopy full SHA for edf5a7d
python/pytest_xprocess_compat.py
@@ -9,12 +9,13 @@
9
10
# Create the pytest_xprocess module by directly importing from xprocess.pytest_xprocess
11
try:
12
+ # fmt: off
13
# Import the entire module directly
14
import xprocess.pytest_xprocess as pytest_xprocess_module # isort:skip
15
from xprocess.pytest_xprocess import * # noqa: F401, F403, isort:skip
-
16
# Add it to sys.modules as pytest_xprocess
17
sys.modules["pytest_xprocess"] = pytest_xprocess_module
18
+ # fmt: on
19
20
except ImportError:
21
# Fallback if xprocess.pytest_xprocess isn't available
0 commit comments