Skip to content

Commit 8792db9

Browse files
committed
Explain skip version check on windows
1 parent 61daad1 commit 8792db9

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tests/test_zlib_compliance.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@
3737

3838
class VersionTestCase(unittest.TestCase):
3939

40+
@unittest.skipIf(
41+
sys.platform.startswith("win"),
42+
"isa-l.h with version information does not exist on Windows")
4043
def test_library_version(self):
4144
# Test that the major version of the actual library in use matches the
4245
# major version that we were compiled against. We can't guarantee that

0 commit comments

Comments
 (0)