Markdownify the IMPLEMENTATION_COVERAGE.md

This commit is contained in:
Jack Danger 2017-10-25 22:23:05 +02:00
parent a0c40b5e8a
commit c3a79dad5b

View File

@ -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()