We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 89aa19f commit 25c94d4Copy full SHA for 25c94d4
tests/src/python/test_provider_mssql.py
@@ -66,6 +66,10 @@ def setUpClass(cls):
66
cls.conn.setPassword('<YourStrong!Passw0rd>')
67
assert cls.conn.open(), cls.conn.lastError().text()
68
69
+ # Triggers a segfault in the sql server odbc driver on Travis - TODO test with more recent Ubuntu base image
70
+ if os.environ.get('TRAVIS', '') == 'true':
71
+ del cls.getEditableLayer
72
+
73
@classmethod
74
def tearDownClass(cls):
75
"""Run after all tests"""
@@ -117,10 +121,6 @@ def getSource(self):
117
121
return vl
118
122
119
123
def getEditableLayer(self):
120
- # Triggers a segfault in the sql server odbc driver on Travis - TODO test with more recent Ubuntu base image
- if os.environ.get('TRAVIS', '') == 'true':
- return
-
124
return self.getSource()
125
126
def enableCompiler(self):
0 commit comments