We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6df6214 commit ef0099eCopy full SHA for ef0099e
.github/workflows/ci_tests.yaml
@@ -43,8 +43,7 @@ jobs:
43
fail-fast: false
44
matrix:
45
python-version: [3.6, 3.7, 3.8]
46
- #os: [ubuntu-latest, macOS-latest, windows-latest]
47
- os: [ubuntu-latest, macOS-latest]
+ os: [ubuntu-latest, macOS-latest, windows-latest]
48
# environmental variables used in coverage
49
env:
50
OS: ${{ matrix.os }}
pygmt/tests/test_image.py
@@ -2,6 +2,7 @@
2
Tests image.
3
"""
4
import os
5
+import sys
6
7
import pytest
8
@@ -11,6 +12,7 @@
11
12
TEST_IMG = os.path.join(os.path.dirname(__file__), "baseline", "test_logo.png")
13
14
15
+@pytest.mark.skipif(sys.platform == "win32", reason="crashes on Windows")
16
@pytest.mark.mpl_image_compare
17
def test_image():
18
"Place images on map"
0 commit comments