(cls, config: Config)
| 482 | |
| 483 | @classmethod |
| 484 | def from_config(cls, config: Config) -> "Session": |
| 485 | session: Session = cls._create(config=config) |
| 486 | return session |
| 487 | |
| 488 | def __repr__(self) -> str: |
| 489 | return "<%s %s exitstatus=%r testsfailed=%d testscollected=%d>" % ( |