Skip to content
This repository was archived by the owner on Sep 4, 2025. It is now read-only.

Commit ab473ef

Browse files
Add Windows XFAIL
1 parent d1ad417 commit ab473ef

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

tests/test_types.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
from __future__ import annotations
44

55
import ipaddress
6+
import sys
67
import typing as t
78
import uuid
89

@@ -24,6 +25,10 @@
2425
)
2526

2627

28+
@pytest.mark.xfail(
29+
sys.platform == "win32",
30+
reason="'ipaddr' extension not available on Windows",
31+
)
2732
@pytest.mark.parametrize(
2833
("data", "query", "expected"),
2934
[

0 commit comments

Comments
 (0)