-
-
Notifications
You must be signed in to change notification settings - Fork 31.9k
Move test running code from test.support to libregrtest #111165
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
Comments
cc @vstinner |
serhiy-storchaka
added a commit
to serhiy-storchaka/cpython
that referenced
this issue
Oct 21, 2023
serhiy-storchaka
added a commit
to serhiy-storchaka/cpython
that referenced
this issue
Oct 21, 2023
Remove no longer used functions run_unittest() and run_doctest() from the test.support module.
serhiy-storchaka
added a commit
that referenced
this issue
Oct 25, 2023
…H-111166) Remove no longer used functions run_unittest() and run_doctest() from the test.support module.
serhiy-storchaka
added a commit
to serhiy-storchaka/cpython
that referenced
this issue
Oct 25, 2023
…ibregrtest (pythonGH-111166) Remove no longer used functions run_unittest() and run_doctest() from the test.support module.. (cherry picked from commit f6a45a0) Co-authored-by: Serhiy Storchaka <[email protected]>
serhiy-storchaka
added a commit
that referenced
this issue
Oct 25, 2023
serhiy-storchaka
added a commit
to serhiy-storchaka/cpython
that referenced
this issue
Oct 25, 2023
…rt to libregrtest (pythonGH-111166) (pythonGH-111316) Remove no longer used functions run_unittest() and run_doctest() from the test.support module. (cherry picked from commit f6a45a0). (cherry picked from commit 5c4f9a1) Co-authored-by: Serhiy Storchaka <[email protected]>
serhiy-storchaka
added a commit
to serhiy-storchaka/cpython
that referenced
this issue
Oct 25, 2023
serhiy-storchaka
added a commit
that referenced
this issue
Oct 25, 2023
miss-islington
pushed a commit
to miss-islington/cpython
that referenced
this issue
Oct 25, 2023
…-111327) (cherry picked from commit a498192) Co-authored-by: Serhiy Storchaka <[email protected]>
miss-islington
pushed a commit
to miss-islington/cpython
that referenced
this issue
Oct 25, 2023
…-111327) (cherry picked from commit a498192) Co-authored-by: Serhiy Storchaka <[email protected]>
serhiy-storchaka
added a commit
that referenced
this issue
Oct 25, 2023
…) (GH-111329) (cherry picked from commit a498192) Co-authored-by: Serhiy Storchaka <[email protected]>
serhiy-storchaka
added a commit
that referenced
this issue
Oct 25, 2023
…) (GH-111328) (cherry picked from commit a498192) Co-authored-by: Serhiy Storchaka <[email protected]>
Can this issue be closed? |
serhiy-storchaka
added a commit
to serhiy-storchaka/cpython
that referenced
this issue
Oct 29, 2023
serhiy-storchaka
added a commit
that referenced
this issue
Oct 29, 2023
miss-islington
pushed a commit
to miss-islington/cpython
that referenced
this issue
Oct 29, 2023
…11467) (cherry picked from commit 4d6bdf8) Co-authored-by: Serhiy Storchaka <[email protected]>
serhiy-storchaka
added a commit
to serhiy-storchaka/cpython
that referenced
this issue
Oct 29, 2023
…honGH-111467). (cherry picked from commit 4d6bdf8) Co-authored-by: Serhiy Storchaka <[email protected]>
serhiy-storchaka
added a commit
that referenced
this issue
Oct 29, 2023
GH-111471) (cherry picked from commit 4d6bdf8) Co-authored-by: Serhiy Storchaka <[email protected]>
serhiy-storchaka
added a commit
that referenced
this issue
Oct 29, 2023
FullteaR
pushed a commit
to FullteaR/cpython
that referenced
this issue
Nov 3, 2023
aisk
pushed a commit
to aisk/cpython
that referenced
this issue
Feb 11, 2024
…est (pythonGH-111166) Remove no longer used functions run_unittest() and run_doctest() from the test.support module.
aisk
pushed a commit
to aisk/cpython
that referenced
this issue
Feb 11, 2024
aisk
pushed a commit
to aisk/cpython
that referenced
this issue
Feb 11, 2024
Glyphack
pushed a commit
to Glyphack/cpython
that referenced
this issue
Sep 2, 2024
…est (pythonGH-111166) Remove no longer used functions run_unittest() and run_doctest() from the test.support module.
Glyphack
pushed a commit
to Glyphack/cpython
that referenced
this issue
Sep 2, 2024
Glyphack
pushed a commit
to Glyphack/cpython
that referenced
this issue
Sep 2, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
test.support.run_unittest()
was used to run unit tests, but now all tests are collected using standard unittest mechanism. Currently it is only used in libregrtest, and its code can be moved there.test.support.run_doctest()
was used to run doctests, but now they are integrated in unit tests usingDocTestSuite
andDocFileSuite
. It is no longer used, and can be removed.Linked PRs
The text was updated successfully, but these errors were encountered: