8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 347454c commit 95489deCopy full SHA for 95489de
tests/test_paths_stdlib.py
@@ -204,6 +204,9 @@ def test_lstat_nosymlink(BASE: PathPlus):
204
def test_owner(BASE: PathPlus):
205
pwd = pytest.importorskip("pwd", reason="the pwd module is needed for this test")
206
207
+ if sys.platform == "win32":
208
+ return
209
+
210
p = PathPlus(BASE) / "fileA"
211
uid = p.stat().st_uid
212
try:
@@ -216,6 +219,9 @@ def test_owner(BASE: PathPlus):
216
219
def test_group(BASE: PathPlus):
217
220
grp = pytest.importorskip("grp", reason="the grp module is needed for this test")
218
221
222
223
224
225
226
gid = p.stat().st_gid
227
0 commit comments