Skipping permission test error if the user has root privileges

This commit is contained in:
Amerr, Ziad (ext) (DI SW ICS MNA RD QA QST 2) 2025-05-19 20:02:59 +03:00
commit d944f6591e

View file

@ -99,7 +99,8 @@ class TestFileResource:
await resource.read()
@pytest.mark.skipif(
os.name == "nt", reason="File permissions behave differently on Windows"
os.name == "nt" or os.getuid() == 0,
reason="File permissions behave differently on Windows or when running as root"
)
async def test_permission_error(self, temp_file: Path):
"""Test reading a file without permissions."""