Skip to content

Commit efda35c

Browse files
committed
test_load_remote_dataset_benchmark_with_region: cpt is not available in GMT 6.3.0
1 parent 8330848 commit efda35c

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

pygmt/tests/test_datasets_load_remote_datasets.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
Test the _load_remote_dataset function.
33
"""
44
import pytest
5+
from packaging.version import Version
6+
from pygmt.clib import __gmt_version__
57
from pygmt.datasets.load_remote_dataset import _load_remote_dataset
68
from pygmt.exceptions import GMTInvalidInput
79

@@ -27,11 +29,13 @@ def test_load_remote_dataset_benchmark_with_region():
2729
data = load_remote_dataset_wrapper(resolution="01d", region=[-10, 10, -5, 5])
2830
assert data.name == "seafloor_age"
2931
assert data.attrs["long_name"] == "age of seafloor crust"
30-
assert data.attrs["cpt"] == "@earth_age.cpt"
3132
assert data.attrs["units"] == "Myr"
3233
assert data.attrs["horizontal_datum"] == "WGS84"
3334
assert data.gmt.registration == 0
3435
assert data.shape == (11, 21)
36+
# The cpt attribute was added after GMT 6.4.0
37+
if Version(__gmt_version__) >= Version("6.4.0"):
38+
assert data.attrs["cpt"] == "@earth_age.cpt"
3539

3640

3741
def test_load_remote_dataset_invalid_resolutions():

0 commit comments

Comments
 (0)