Markdownify the IMPLEMENTATION_COVERAGE.md
This commit is contained in:
parent
a0c40b5e8a
commit
c3a79dad5b
@ -56,14 +56,14 @@ def print_implementation_coverage():
|
|||||||
else:
|
else:
|
||||||
percentage_implemented = 0
|
percentage_implemented = 0
|
||||||
|
|
||||||
print("-----------------------")
|
print("")
|
||||||
print("{} - {}% implemented".format(service_name, percentage_implemented))
|
print("## {} - {}% implemented".format(service_name, percentage_implemented))
|
||||||
print("-----------------------")
|
|
||||||
for op in operations:
|
for op in operations:
|
||||||
if op in implemented:
|
if op in implemented:
|
||||||
print("[X] {}".format(op))
|
print("- [X] {}".format(op))
|
||||||
else:
|
else:
|
||||||
print("[ ] {}".format(op))
|
print("- [ ] {}".format(op))
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
print_implementation_coverage()
|
print_implementation_coverage()
|
||||||
|
Loading…
Reference in New Issue
Block a user