diff --git a/.github/workflows/ci_tests.yaml b/.github/workflows/ci_tests.yaml index 35e5bf7d625..83e06e17595 100644 --- a/.github/workflows/ci_tests.yaml +++ b/.github/workflows/ci_tests.yaml @@ -43,8 +43,7 @@ jobs: fail-fast: false matrix: python-version: [3.6, 3.7, 3.8] - #os: [ubuntu-latest, macOS-latest, windows-latest] - os: [ubuntu-latest, macOS-latest] + os: [ubuntu-latest, macOS-latest, windows-latest] # environmental variables used in coverage env: OS: ${{ matrix.os }} diff --git a/pygmt/tests/test_image.py b/pygmt/tests/test_image.py index f20fed3eba7..1bc0e1ffeea 100644 --- a/pygmt/tests/test_image.py +++ b/pygmt/tests/test_image.py @@ -2,6 +2,7 @@ Tests image. """ import os +import sys import pytest @@ -11,6 +12,7 @@ TEST_IMG = os.path.join(os.path.dirname(__file__), "baseline", "test_logo.png") +@pytest.mark.skipif(sys.platform == "win32", reason="crashes on Windows") @pytest.mark.mpl_image_compare def test_image(): "Place images on map"