()
| 334 | |
| 335 | |
| 336 | def test_pytestconfig_is_session_scoped() -> None: |
| 337 | from _pytest.fixtures import pytestconfig |
| 338 | |
| 339 | marker = getfixturemarker(pytestconfig) |
| 340 | assert marker is not None |
| 341 | assert marker.scope == "session" |
| 342 | |
| 343 | |
| 344 | class TestNoselikeTestAttribute: |
nothing calls this directly
no test coverage detected