Change levels order

This commit is contained in:
Alexandre Aubin 2017-09-01 20:21:17 +02:00
parent fc133404a2
commit bbbccf9d3d
2 changed files with 6 additions and 7 deletions

View file

@ -1,16 +1,16 @@
Package linter Package linter
Installation Installation
Deleting Deleting
Upgrade
Backup
Restore
Change URL
Installation in a sub path Installation in a sub path
Deleting from a sub path Deleting from a sub path
Installation on the root Installation on the root
Deleting from root Deleting from root
Upgrade
Installation in private mode Installation in private mode
Installation in public mode Installation in public mode
Multi-instance installations Multi-instance installations
Malformed path Malformed path
Port already used Port already used
Backup
Restore
Change URL

View file

@ -32,9 +32,8 @@ if __name__ == '__main__':
#summary = json.load(open(summary_path)) #summary = json.load(open(summary_path))
summary = {}
summary = { "testnames" : ["Package linter","Installation","Deleting","Installation in a sub path","Deleting from a sub path","Installation on the root","Deleting from root","Upgrade","Installation in private mode","Installation in public mode","Multi-instance installations","Malformed path","Port already used","Backup","Restore","Change URL"]} summary["testnames"] = open("list_tests").read().strip().split('\n')
summary["apps"] = json.loads(open("apps.json").read()) summary["apps"] = json.loads(open("apps.json").read())
# Generate the output using the template # Generate the output using the template