diff options
Diffstat (limited to 'Lib/test/test_repr.py')
| -rw-r--r-- | Lib/test/test_repr.py | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/Lib/test/test_repr.py b/Lib/test/test_repr.py index cd9675a..b7d9374 100644 --- a/Lib/test/test_repr.py +++ b/Lib/test/test_repr.py @@ -265,6 +265,11 @@ class ClassWithFailingRepr: raise Exception("This should be caught by Repr.repr_instance") -run_unittest(ReprTests) -if os.name != 'mac': - run_unittest(LongReprTest) +def test_main(): + run_unittest(ReprTests) + if os.name != 'mac': + run_unittest(LongReprTest) + + +if __name__ == "__main__": + test_main() |
