Commit 3b5bf01a by Arun Babu Neelicattu Committed by Bjorn Neergaard

tests: ensure mock env signature matches base class

parent 1dc969f6
......@@ -56,8 +56,8 @@ class MockEnv(BaseMockEnv):
}
@property
def sys_path(self) -> list[Path]:
return [ENV_DIR, SITE_PLATLIB, SITE_PURELIB]
def sys_path(self) -> list[str]:
return [str(path) for path in [ENV_DIR, SITE_PLATLIB, SITE_PURELIB]]
@pytest.fixture
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment