this does not work apparently: ```python @pytest.fixture(scope="session") def test_foo(resource_path_root): pass ``` ``` ScopeMismatch: You tried to access the 'function' scoped fixture 'resource_path_root' with a 'session' scoped request object, involved factories ```
this does not work apparently: