We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29b9239 commit 5a41417Copy full SHA for 5a41417
Tests/test_image.py
@@ -193,6 +193,10 @@ def test_internals(self):
193
assert not im.readonly
194
195
@pytest.mark.skipif(is_win32(), reason="Test requires opening tempfile twice")
196
+ @pytest.mark.skipif(
197
+ sys.platform == "cygwin",
198
+ reason="Test requires opening an mmaped file for writing",
199
+ )
200
def test_readonly_save(self, tmp_path):
201
temp_file = str(tmp_path / "temp.bmp")
202
shutil.copy("Tests/images/rgb32bf-rgba.bmp", temp_file)
0 commit comments