()
| 264 | |
| 265 | |
| 266 | def test_pytestconfig_is_session_scoped() -> None: |
| 267 | from _pytest.fixtures import pytestconfig |
| 268 | |
| 269 | marker = getfixturemarker(pytestconfig) |
| 270 | assert marker is not None |
| 271 | assert marker.scope == "session" |
| 272 | |
| 273 | |
| 274 | class TestNoselikeTestAttribute: |
nothing calls this directly
no test coverage detected