You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
printImportant("{} members missing bindings, out of {} allowed".format(missing_member_count, ACCEPTABLE_MISSING_MEMBERS))
108
+
printImportant("{} members missing bindings".format(missing_member_count))
119
109
120
-
assertmissing_class_count<=ACCEPTABLE_MISSING_CLASSES, """\n\nFAIL: new unbound classes have been introduced, please add SIP bindings for these classes
110
+
assertmissing_class_count<=0, """\n\nFAIL: new unbound classes have been introduced, please add SIP bindings for these classes
121
111
If these classes are not suitable for the Python bindings, please add the Doxygen tag
122
112
"@note not available in Python bindings" to the CLASS Doxygen comments"""
123
113
124
-
assertmissing_member_count<=ACCEPTABLE_MISSING_MEMBERS, """\n\nFAIL: new unbound members have been introduced, please add SIP bindings for these members
114
+
assertmissing_member_count<=0, """\n\nFAIL: new unbound members have been introduced, please add SIP bindings for these members
125
115
If these members are not suitable for the Python bindings, please add the Doxygen tag
126
116
"@note not available in Python bindings" to the MEMBER Doxygen comments"""
0 commit comments