Skip to content

Commit

Permalink
Skip test on GDAL < 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
elpaso committed Apr 21, 2023
1 parent bce0f5a commit 4ffed5b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tests/src/python/test_qgsvectorfilewriter.py
Expand Up @@ -1603,6 +1603,7 @@ def testWriteUnsetAttributeToGpkg(self):
f = next(features)
self.assertEqual(f['int'], 12345)

@unittest.skipIf(int(gdal.VersionInfo('VERSION_NUM')) < GDAL_COMPUTE_VERSION(3, 7, 0), "GDAL 3.7 required")
def testWriteJsonMapToGpkg(self):

tmp_dir = QTemporaryDir()
Expand Down

0 comments on commit 4ffed5b

Please sign in to comment.