Commit 767f4366 authored by k8s-merge-robot's avatar k8s-merge-robot

Merge pull request #24939 from rmmh/fix-gen-json

Automatic merge from submit-queue Fix test-history. RE objects aren't callable.
parents f44bb036 a563c017
...@@ -193,7 +193,7 @@ def main(server, match): ...@@ -193,7 +193,7 @@ def main(server, match):
"""Collect test info in matching jobs.""" """Collect test info in matching jobs."""
print('Finding tests in jobs matching {} at server {}'.format( print('Finding tests in jobs matching {} at server {}'.format(
match, server)) match, server))
matcher = re.compile(match) matcher = re.compile(match).match
tests = get_tests(server, matcher) tests = get_tests(server, matcher)
with open('tests.json', 'w') as buf: with open('tests.json', 'w') as buf:
json.dump(tests, buf, sort_keys=True) json.dump(tests, buf, sort_keys=True)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment