(loader, tests, pattern)
| 2739 | |
| 2740 | |
| 2741 | def load_tests(loader, tests, pattern): |
| 2742 | # TODO: RUSTPYTHON Eventually remove the optionflags for ingoring exception details. |
| 2743 | tests.addTest(doctest.DocTestSuite(optionflags=doctest.IGNORE_EXCEPTION_DETAIL)) |
| 2744 | return tests |
| 2745 | |
| 2746 | |
| 2747 | if __name__ == "__main__": |