Used for doctest/unittest integration.
(loader, tests, ignore)
| 3324 | # === Run tests === |
| 3325 | |
| 3326 | def load_tests(loader, tests, ignore): |
| 3327 | """Used for doctest/unittest integration.""" |
| 3328 | tests.addTests(doctest.DocTestSuite()) |
| 3329 | if sys.float_repr_style == 'short': |
| 3330 | tests.addTests(doctest.DocTestSuite(statistics)) |
| 3331 | return tests |
| 3332 | |
| 3333 | |
| 3334 | if __name__ == "__main__": |
nothing calls this directly
no test coverage detected
searching dependent graphs…