Skip to content

Commit

Permalink
pythongh-89392: Make test_pep646_syntax discoverable (pythonGH-108861)
Browse files Browse the repository at this point in the history
  • Loading branch information
serhiy-storchaka authored Sep 4, 2023
1 parent 76f3c04 commit d0b22f6
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions Lib/test/test_pep646_syntax.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import doctest

doctests = """
Setup
Expand Down Expand Up @@ -317,10 +319,10 @@

__test__ = {'doctests' : doctests}

def test_main(verbose=False):
from test import support
from test import test_pep646_syntax
return support.run_doctest(test_pep646_syntax, verbose)
def load_tests(loader, tests, pattern):
tests.addTest(doctest.DocTestSuite())
return tests


if __name__ == "__main__":
test_main(verbose=True)
unittest.main()

0 comments on commit d0b22f6

Please sign in to comment.