bpo-34272: Reorganize C API tests. (GH-8551)

Move some C API tests into Lib/test/test_capi/.
This commit is contained in:
Serhiy Storchaka 2022-11-10 08:54:37 +02:00 committed by GitHub
parent 87f5180cd7
commit f883b7f8ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,5 @@
import os
from test.support import load_package_tests
def load_tests(*args):
return load_package_tests(os.path.dirname(__file__), *args)

View File

@ -0,0 +1,3 @@
import unittest
unittest.main('test.test_capi')

View File

@ -0,0 +1 @@
Some C API tests were moved into the new Lib/test/test_capi/ directory.