Skip to content

Commit

Permalink
xfail raster test on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
rcoup committed Apr 23, 2023
1 parent e9bf5ff commit b59dc75
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions tests/raster/test_workingcopy.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
import shutil
import platform

import pytest

from .fixtures import requires_gdal_info # noqa
Expand Down Expand Up @@ -108,6 +110,9 @@ def test_working_copy_edit(
)


@pytest.mark.xfail(
platform.system() == "Windows", reason="TODO on Windows", strict=True
)
@pytest.mark.parametrize(
"pam_filename",
[
Expand Down Expand Up @@ -205,6 +210,9 @@ def test_working_copy_edit_rat(
)


@pytest.mark.xfail(
platform.system() == "Windows", reason="TODO on Windows", strict=True
)
def test_working_copy_add_or_remove_rat(
cli_runner,
data_archive,
Expand Down

0 comments on commit b59dc75

Please sign in to comment.