Shorthand for print with file=sys.stderr. Use this for all internal test framework logging..
(*args)
| 102 | |
| 103 | |
| 104 | def errlog(*args): |
| 105 | """Shorthand for print with file=sys.stderr. |
| 106 | |
| 107 | Use this for all internal test framework logging.. |
| 108 | """ |
| 109 | print(*args, file=sys.stderr) |
| 110 | |
| 111 | |
| 112 | def load_previous_test_run_results(): |