mirror of
https://github.com/status-im/PyGithub.git
synced 2026-09-02 11:51:10 +00:00
Cosmetic change in integration test
This commit is contained in:
+9
-3
@@ -187,12 +187,18 @@ class IntegrationTest:
|
||||
else:
|
||||
uncoveredApis.add( verb + " " + currentApi )
|
||||
|
||||
print
|
||||
if len( uncoveredMethods ) != 0:
|
||||
print "Not covered (" + str( len( uncoveredMethods ) ) + "):"
|
||||
print
|
||||
header = "Not covered (" + str( len( uncoveredMethods ) ) + ")"
|
||||
print header
|
||||
print "=" * len( header )
|
||||
print "\n".join( sorted( uncoveredMethods ) )
|
||||
|
||||
if len( uncoveredApis ) != 0:
|
||||
print "Not implemented (" + str( len( uncoveredApis ) ) + "):"
|
||||
print
|
||||
header = "Not implemented (" + str( len( uncoveredApis ) ) + ")"
|
||||
print header
|
||||
print "=" * len( header )
|
||||
print "\n".join( sorted( uncoveredApis ) )
|
||||
|
||||
def testAuthenticatedUserDetails( self ):
|
||||
|
||||
Reference in New Issue
Block a user