Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[3.11] gh-89392: Make test_pep646_syntax discoverable (GH-108861) #108869

Merged
merged 1 commit into from
Sep 4, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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()