Skip to content

Commit 0b8f2c7

Browse files
authored
Merge branch 'OSGeo:main' into main
2 parents 832e75a + 84cbb3b commit 0b8f2c7

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

.github/workflows/macos_gunittest.cfg

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
exclude =
77
gui/wxpython/core/testsuite/test_gcmd.py
88
gui/wxpython/core/testsuite/toolboxes.sh
9-
python/grass/gunittest/testsuite/test_assertions_vect.py
109
python/grass/pygrass/raster/testsuite/test_pygrass_raster_doctests.py
1110
python/grass/pygrass/rpc/testsuite/test_pygrass_rpc_doctests.py
1211
python/grass/temporal/testsuite/unittests_temporal_raster_algebra_equal_ts.py

.gunittest.cfg

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
# but it includes mainly tests which can (and should) be fixed.
66
exclude =
77
gui/wxpython/core/testsuite/toolboxes.sh
8-
python/grass/gunittest/testsuite/test_assertions_vect.py
98
python/grass/gunittest/testsuite/test_gunitest_doctests.py
109
python/grass/pygrass/raster/testsuite/test_pygrass_raster_doctests.py
1110
python/grass/pygrass/rpc/testsuite/test_pygrass_rpc_doctests.py

python/grass/gunittest/testsuite/test_assertions_vect.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
Tests assertion methods for vectors.
33
"""
44

5+
import unittest
56
from grass.exceptions import CalledModuleError
67
from grass.gunittest.case import TestCase
78
from grass.gunittest.main import test
8-
from grass.gunittest.utils import xfail_windows
99

1010

1111
V_UNIVAR_SCHOOLS_WIDTH_SUBSET = """n=144
@@ -282,7 +282,7 @@ def test_assertVectorAsciiEqualsVectorAscii_diff_content(self):
282282
self.assertFileExists(self.simple_base_file)
283283
self.assertFileExists(self.simple_modified_file)
284284

285-
@xfail_windows
285+
@unittest.expectedFailure
286286
def test_assertVectorEqualsAscii_by_import(self):
287287
amap = "simple_vector_map_imported_base"
288288
self.runModule(

0 commit comments

Comments
 (0)