mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-12-25 17:36:18 +03:00
Corrected skip condition
Co-Authored-By: Hugo van Kemenade <hugovk@users.noreply.github.com>
This commit is contained in:
parent
7fd9663198
commit
eeb2588fe2
|
@ -38,7 +38,7 @@ def test_viewer_show():
|
|||
|
||||
|
||||
@pytest.mark.skipif(
|
||||
not on_ci() or not (is_win32() and on_github_actions()),
|
||||
not on_ci() or (is_win32() and on_github_actions()),
|
||||
reason="Only run on CIs; hangs on Windows on GitHub Actions",
|
||||
)
|
||||
def test_show():
|
||||
|
|
Loading…
Reference in New Issue
Block a user