We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent 9e14f09 commit 6ffec81Copy full SHA for 6ffec81
tests/src/python/test_qgssipcoverage.py
@@ -38,7 +38,7 @@
38
# (changes which lower this threshold are welcomed though!)
39
40
ACCEPTABLE_MISSING_CLASSES = 69
41
-ACCEPTABLE_MISSING_MEMBERS = 264
+ACCEPTABLE_MISSING_MEMBERS = 245
42
43
44
class TestQgsSipCoverage(TestCase):
@@ -70,6 +70,9 @@ def testCoverage(self):
70
for m in parser.bindable_members:
71
if m[0] in bound_objects:
72
obj = bound_objects[m[0]]
73
+ if "::" in m[0] and m[0].split("::")[1] == m[1]:
74
+ # skip constructors of nested classes
75
+ continue
76
77
# try two different methods of checking for member existence
78
try:
0 commit comments