Skip to content

Commit a4ec9f3

Browse files
authored
Merge pull request #6703 from nulano/embeddable-xfail
Add xfail mark to TestEmbeddable
2 parents 4fc0a4c + 23df3bd commit a4ec9f3

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

Tests/test_image_access.py

+5-7
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,10 @@
44
import sysconfig
55

66
import pytest
7-
from setuptools.command.build_ext import new_compiler
87

98
from PIL import Image
109

11-
from .helper import assert_image_equal, hopper, is_win32, on_ci
10+
from .helper import assert_image_equal, hopper, is_win32
1211

1312
# CFFI imports pycparser which doesn't support PYTHONOPTIMIZE=2
1413
# https://github.com/eliben/pycparser/pull/198#issuecomment-317001670
@@ -406,14 +405,13 @@ def test_putpixel_unrecognized_mode(self):
406405

407406

408407
class TestEmbeddable:
409-
@pytest.mark.skipif(
410-
not is_win32() or on_ci(),
411-
reason="Failing on AppVeyor / GitHub Actions when run from subprocess, "
412-
"not from shell",
413-
)
408+
@pytest.mark.xfail(reason="failing test")
409+
@pytest.mark.skipif(not is_win32(), reason="requires Windows")
414410
def test_embeddable(self):
415411
import ctypes
416412

413+
from setuptools.command.build_ext import new_compiler
414+
417415
with open("embed_pil.c", "w", encoding="utf-8") as fh:
418416
fh.write(
419417
"""

0 commit comments

Comments
 (0)