X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=tests%2Fcoverage_dungeon.py;h=182930cb878511ea881a3473fb28ff71e119f80e;hb=829e55f99df496aa04f053817e9311b3b54c2933;hp=365995ce644598d9178f8cd976e8a19b50a052c9;hpb=42c66160a77370e7f70a9024f5d1eff3ef2710cd;p=open-adventure.git diff --git a/tests/coverage_dungeon.py b/tests/coverage_dungeon.py index 365995c..182930c 100755 --- a/tests/coverage_dungeon.py +++ b/tests/coverage_dungeon.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # This is the open-adventure dungeon text coverage report generator. It # consumes a YAML description of the dungeon and determines whether the @@ -71,10 +71,10 @@ def search(needle, haystack): needle_san = re.escape(needle) \ .replace("\\n", "\n") \ .replace("\\t", "\t") \ - .replace("\%S", ".*") \ - .replace("\%s", ".*") \ - .replace("\%d", ".*") \ - .replace("\%V", ".*") + .replace("%S", ".*") \ + .replace("%s", ".*") \ + .replace("%d", ".*") \ + .replace("%V", ".*") return re.search(needle_san, haystack) @@ -197,7 +197,7 @@ if __name__ == "__main__": # load DB try: with open(YAML_PATH, "r") as f: - db = yaml.load(f) + db = yaml.safe_load(f) except IOError as e: print('ERROR: could not load {} ({}})'.format(YAML_PATH, e.strerror)) exit(-1) @@ -223,7 +223,7 @@ if __name__ == "__main__": category["percent"] = (category["covered"] / float(category["total"])) * 100 # render section header - cat_messages = sorted(category["messages"].items()) + cat_messages = list(category["messages"].items()) cat_keys = cat_messages[0][1].keys() headers_html = "" colspan = 10 - len(cat_keys)