File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change 15
15
from _pytest .config import directory_arg
16
16
from _pytest .config import hookimpl
17
17
from _pytest .config import UsageError
18
+ from _pytest .fixtures import FixtureManager
18
19
from _pytest .outcomes import exit
19
20
from _pytest .runner import collect_one_node
20
21
from _pytest .runner import SetupState
@@ -377,7 +378,10 @@ def __missing__(self, path: str) -> str:
377
378
class Session (nodes .FSCollector ):
378
379
Interrupted = Interrupted
379
380
Failed = Failed
381
+ # Set on the session by runner.pytest_sessionstart.
380
382
_setupstate = None # type: SetupState
383
+ # Set on the session by fixtures.pytest_sessionstart.
384
+ _fixturemanager = None # type: FixtureManager
381
385
382
386
def __init__ (self , config ):
383
387
nodes .FSCollector .__init__ (
You can’t perform that action at this time.
0 commit comments