##// END OF EJS Templates
Remove deprecated "define_magic", that marked to be removed for 5.0
Remove deprecated "define_magic", that marked to be removed for 5.0

File last commit:

r7863:28e099c2
r22401:30b75a2b
Show More
post_pr_test.py
13 lines | 308 B | text/x-python | PythonLexer
#!/usr/bin/env python
"""Post the results of a pull request test to Github.
"""
from test_pr import TestRun
testrun = TestRun.load_results()
testrun.post_logs()
testrun.print_results()
testrun.post_results_comment()
print()
print("Posted test results to pull request")
print(" " + testrun.pr['html_url'])