gh-138013: Remove load_tests in test_io.test_general#138771
gh-138013: Remove load_tests in test_io.test_general#138771vstinner merged 1 commit intopython:mainfrom
Conversation
Rely on default test discovery. Validation: ```bash # Run before commit ./python -m test test_io -uall,walltime,largefile,cpu,extralargefile -M25G -o --fail-env-changed -j0 --list-cases | sort > old_cases.txt # Run after commit ./python -m test test_io -uall,walltime,largefile,cpu,extralargefile -M25G -o --fail-env-changed -j0 --list-cases | sort > new_cases.txt diff new_cases.txt old_cases. # <outputs no changes in case list> ```
f8509c3 to
60c4e8b
Compare
|
cc: @vstinner, once this is in, moving subsets of tests (bufferedio, textio, signals) just becomes copy/paste |
|
|
|
|
Rely on default test discovery.
Validation:
cc: @srittau (GH-138369 where a test was added but wasn't run because of the manual test list)