sorting implementation coverage
This commit is contained in:
parent
2b9e834e84
commit
a8ebb25efc
2 changed files with 1 additions and 3640 deletions
File diff suppressed because it is too large
Load diff
|
|
@ -21,7 +21,6 @@ def get_moto_implementation(service_name):
|
||||||
|
|
||||||
def calculate_implementation_coverage():
|
def calculate_implementation_coverage():
|
||||||
service_names = Session().get_available_services()
|
service_names = Session().get_available_services()
|
||||||
service_names = sorted(service_names)
|
|
||||||
coverage = {}
|
coverage = {}
|
||||||
for service_name in service_names:
|
for service_name in service_names:
|
||||||
moto_client = get_moto_implementation(service_name)
|
moto_client = get_moto_implementation(service_name)
|
||||||
|
|
@ -45,7 +44,7 @@ def calculate_implementation_coverage():
|
||||||
|
|
||||||
def print_implementation_coverage():
|
def print_implementation_coverage():
|
||||||
coverage = calculate_implementation_coverage()
|
coverage = calculate_implementation_coverage()
|
||||||
for service_name in coverage:
|
for service_name in sorted(coverage):
|
||||||
implemented = coverage.get(service_name)['implemented']
|
implemented = coverage.get(service_name)['implemented']
|
||||||
not_implemented = coverage.get(service_name)['not_implemented']
|
not_implemented = coverage.get(service_name)['not_implemented']
|
||||||
operations = sorted(implemented + not_implemented)
|
operations = sorted(implemented + not_implemented)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue