##// END OF EJS Templates
Tidy up error raising in magic decorators....
Tidy up error raising in magic decorators. Closes gh-1778

File last commit:

r7010:3bdd7355
r7047:6fd55e8d
Show More
post_pr_test.py
13 lines | 389 B | text/x-python | PythonLexer
#!/usr/bin/env python
"""Post the results of a pull request test to Github.
"""
from test_pr import load_results, post_logs, post_results_comment, print_results
num, results, pr = load_results()
results_urls = post_logs(results)
print_results(pr, results_urls)
post_results_comment(pr, results_urls, num)
print()
print("Posted test results to pull request")
print(" " + pr['html_url'])