##// END OF EJS Templates
Settle on cleaner API for magic registration....
Settle on cleaner API for magic registration. The official API will be: - ip.register_magics(*args): for registering one or more classes or instances that subclass the main magic.Magics class. This will be the *only* method for registering magics that have a signature f(self, line,...). - ip.function_as_magic: for registering one-off magics made from a standalone function with the signatures f(line), f(line, cell) or f(line, cell=None). We will support, for backwards compatibility, the old ip.define_magic, but it will print a deprecation warning.

File last commit:

r6713:1fab027d
r6936:9c7626b3
Show More
post_pr_test.py
10 lines | 309 B | text/x-python | PythonLexer
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'])