Skip to content

Commit

Permalink
bpo-34272: Reorganize C API tests. (GH-8551)
Browse files Browse the repository at this point in the history
Move some C API tests into Lib/test/test_capi/.
(cherry picked from commit f883b7f)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
  • Loading branch information
miss-islington and serhiy-storchaka committed Nov 12, 2022
1 parent 8d27e62 commit 535027f
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Lib/test/test_capi/__init__.py
@@ -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)
3 changes: 3 additions & 0 deletions Lib/test/test_capi/__main__.py
@@ -0,0 +1,3 @@
import unittest

unittest.main('test.test_capi')
File renamed without changes.
File renamed without changes.
File renamed without changes.
@@ -0,0 +1 @@
Some C API tests were moved into the new Lib/test/test_capi/ directory.

0 comments on commit 535027f

Please sign in to comment.