Skip to content

Commit

Permalink
FIX: Remove last couple mentions of cartopy and test locally
Browse files Browse the repository at this point in the history
  • Loading branch information
mgrover1 committed Aug 30, 2024
1 parent cea5a50 commit 0625c1a
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions tests/graph/test_plot_maxcappi.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import os

import matplotlib.pyplot as plt
import pytest

import pyart

Expand All @@ -28,9 +27,6 @@ def test_plot_maxcappi_simple(outfile=None):
plt.close()


@pytest.mark.skipif(
not pyart.graph.gridmapdisplay._CARTOPY_AVAILABLE, reason="Cartopy is not installed"
)
def test_plot_maxcappi_with_save(outfile=None):
"""
Test plot_maxcappi and save the output to a file.
Expand Down Expand Up @@ -59,9 +55,6 @@ def test_plot_maxcappi_with_save(outfile=None):
assert os.path.exists(outfile), "The plot was not saved as expected."


@pytest.mark.skipif(
not pyart.graph.gridmapdisplay._CARTOPY_AVAILABLE, reason="Cartopy is not installed"
)
def test_plot_maxcappi_with_all_options(outfile=None):
"""
Test plot_maxcappi with all options enabled.
Expand Down

0 comments on commit 0625c1a

Please sign in to comment.