bpo-34272: Reorganize C API tests. (GH-8551) · python/cpython@f883b7f

6 files changed

lines changed

Original file line numberDiff line numberDiff line change

@@ -0,0 +1,5 @@

1+

import os

2+

from test.support import load_package_tests

3+
4+

def load_tests(*args):

5+

return load_package_tests(os.path.dirname(__file__), *args)

Original file line numberDiff line numberDiff line change

@@ -0,0 +1,3 @@

1+

import unittest

2+
3+

unittest.main('test.test_capi')

File renamed without changes.

File renamed without changes.

File renamed without changes.

Original file line numberDiff line numberDiff line change

@@ -0,0 +1 @@

1+

Some C API tests were moved into the new Lib/test/test_capi/ directory.