Skip to content

Commit

Permalink
skip failing test on macOS/PyPI
Browse files Browse the repository at this point in the history
  • Loading branch information
Zeitsperre committed Feb 19, 2025
1 parent f43bea5 commit 511e3d0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/test_geoserver.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ def test_select_hybas_na_domain_bbox(self):
dom = self.geoserver.select_hybas_domain(bbox=bbox)
assert dom == "na"

# @pytest.mark.skip(
# sys.platform == "darwin" and not os.getenv("CONDA_PREFIX"),
# reason="Fails on MacOS w/ PyPI",
# )
@pytest.mark.skip(
sys.platform == "darwin" and not os.getenv("CONDA_PREFIX"),
reason="Fails on MacOS w/ PyPI",
)
def test_select_hybas_ar_domain_point(self):
point = -114.65, 61.35
dom = self.geoserver.select_hybas_domain(point=point)
Expand Down

0 comments on commit 511e3d0

Please sign in to comment.