We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f68679 commit c5e5036Copy full SHA for c5e5036
src/ifctester/ifctester/reporter.py
@@ -163,6 +163,7 @@ def report(self):
163
return self.results
164
165
def report_specification(self, specification):
166
+ applicability = [a.to_string("applicability") for a in specification.applicability]
167
requirements = []
168
for requirement in specification.requirements:
169
requirements.append(
@@ -182,6 +183,7 @@ def report_specification(self, specification):
182
183
"total": total,
184
"percentage": percentage,
185
"required": specification.minOccurs != 0,
186
+ "applicability": applicability,
187
"requirements": requirements,
188
}
189
0 commit comments