##// END OF EJS Templates
remove sys_version for Python 3...
remove sys_version for Python 3 since we're now committed to using Python3, I decided to go through and clean up the code base to remove paths which depend on sys_version checks for Python3

File last commit:

r7863:28e099c2
r22959:7851f8a3
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'])