Corrected skip condition

Co-Authored-By: Hugo van Kemenade <hugovk@users.noreply.github.com>
This commit is contained in:
Andrew Murray 2020-01-28 19:59:41 +11:00 committed by GitHub
parent 7fd9663198
commit eeb2588fe2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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():