mirror of https://github.com/python/cpython
bpo-34272: Reorganize C API tests. (GH-8551)
Move some C API tests into Lib/test/test_capi/.
This commit is contained in:
parent
87f5180cd7
commit
f883b7f8ee
|
@ -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)
|
|
@ -0,0 +1,3 @@
|
|||
import unittest
|
||||
|
||||
unittest.main('test.test_capi')
|
|
@ -0,0 +1 @@
|
|||
Some C API tests were moved into the new Lib/test/test_capi/ directory.
|
Loading…
Reference in New Issue