Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add xfail mark to TestEmbeddable #6703

Merged
merged 3 commits into from
Oct 30, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
add xfail mark to test_image_access:test_embeddable
  • Loading branch information
nulano committed Oct 30, 2022
commit eaee7fda973d6915f7071f9b7f7edb7ad481ef7c
7 changes: 2 additions & 5 deletions Tests/test_image_access.py
Original file line number Diff line number Diff line change
Expand Up @@ -406,11 +406,8 @@ def test_putpixel_unrecognized_mode(self):


class TestEmbeddable:
@pytest.mark.skipif(
not is_win32() or on_ci(),
reason="Failing on AppVeyor / GitHub Actions when run from subprocess, "
"not from shell",
)
@pytest.mark.xfail(reason="failing test")
@pytest.mark.skipif(not is_win32(), reason="requires Windows")
def test_embeddable(self):
import ctypes

Expand Down