Skip to content

Commit

Permalink
Disable broken test for automatic transaction groups
Browse files Browse the repository at this point in the history
This functionality is broken on newer GDAL versions, due
to incorrect assumptions at time of development.

See qgis#59797 (comment)

Parties interested in seeing this test resurrected are welcome
to submit fixes.
  • Loading branch information
nyalldawson committed Dec 16, 2024
1 parent 72f07dc commit 2263393
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tests/src/python/test_qgsvectorlayereditbuffer.py
Original file line number Diff line number Diff line change
Expand Up @@ -843,7 +843,11 @@ def _check_feature(wkt):
self.assertEqual(f.attribute(2), None)

_test(Qgis.TransactionMode.Disabled)
_test(Qgis.TransactionMode.AutomaticGroups)

# THIS FUNCTIONALITY IS BROKEN ON NEWER GDAL VERSIONS, DUE TO INCORRECT
# assumptions at time of development. See https://github.com/qgis/QGIS/pull/59797#issuecomment-2544133498
# _test(Qgis.TransactionMode.AutomaticGroups)

_test(Qgis.TransactionMode.BufferedGroups)


Expand Down

0 comments on commit 2263393

Please sign in to comment.