diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2021-09-20 08:36:57 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-20 08:36:57 (GMT) |
commit | a856364cc920d8b16750fd1fadc902efb509754c (patch) | |
tree | 1f5f618d8ad0e18fd8718bc8cfaf478cd26280be /Lib/test/test_syntax.py | |
parent | 5e2c32e08ed77081cabd9d51f0589f81c1572732 (diff) | |
download | cpython-a856364cc920d8b16750fd1fadc902efb509754c.zip cpython-a856364cc920d8b16750fd1fadc902efb509754c.tar.gz cpython-a856364cc920d8b16750fd1fadc902efb509754c.tar.bz2 |
bpo-45229: Use doctest.DocTestSuite instead of run_doctest (GH-28468)
Alo use load_tests() for adding tests.
Diffstat (limited to 'Lib/test/test_syntax.py')
-rw-r--r-- | Lib/test/test_syntax.py | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/Lib/test/test_syntax.py b/Lib/test/test_syntax.py index be8be89..aa86d0c 100644 --- a/Lib/test/test_syntax.py +++ b/Lib/test/test_syntax.py @@ -1266,6 +1266,7 @@ Corner-cases that used to crash: """ import re +import doctest import unittest from test import support @@ -1554,10 +1555,10 @@ while 1: self._check_error(source, "too many statically nested blocks") -def test_main(): - support.run_unittest(SyntaxTestCase) - from test import test_syntax - support.run_doctest(test_syntax, verbosity=True) +def load_tests(loader, tests, pattern): + tests.addTest(doctest.DocTestSuite()) + return tests + if __name__ == "__main__": - test_main() + unittest.main() |