Move implementation percentage to separate line. Closes #2368.
This commit is contained in:
parent
734c7203cf
commit
e568dadadc
File diff suppressed because it is too large
Load Diff
@ -61,7 +61,8 @@ def print_implementation_coverage(coverage):
|
||||
percentage_implemented = 0
|
||||
|
||||
print("")
|
||||
print("## {} - {}% implemented".format(service_name, percentage_implemented))
|
||||
print("## {}\n".format(service_name))
|
||||
print("{}% implemented\n".format(percentage_implemented))
|
||||
for op in operations:
|
||||
if op in implemented:
|
||||
print("- [X] {}".format(op))
|
||||
@ -93,7 +94,8 @@ def write_implementation_coverage_to_file(coverage):
|
||||
percentage_implemented = 0
|
||||
|
||||
file.write("\n")
|
||||
file.write("## {} - {}% implemented\n".format(service_name, percentage_implemented))
|
||||
file.write("## {}\n".format(service_name))
|
||||
file.write("{}% implemented\n".format(percentage_implemented))
|
||||
for op in operations:
|
||||
if op in implemented:
|
||||
file.write("- [X] {}\n".format(op))
|
||||
|
Loading…
Reference in New Issue
Block a user