Skip to content

Commit eeb2588

Browse files
radarherehugovk
andauthored
Corrected skip condition
Co-Authored-By: Hugo van Kemenade <hugovk@users.noreply.github.com>
1 parent 7fd9663 commit eeb2588

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Tests/test_imageshow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def show_image(self, image, **options):
3838

3939

4040
@pytest.mark.skipif(
41-
not on_ci() or not (is_win32() and on_github_actions()),
41+
not on_ci() or (is_win32() and on_github_actions()),
4242
reason="Only run on CIs; hangs on Windows on GitHub Actions",
4343
)
4444
def test_show():

0 commit comments

Comments
 (0)