diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2022-07-25 00:53:10 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-25 00:53:10 (GMT) |
commit | 3e718cf880e8994d76f6296a502497c16a956644 (patch) | |
tree | 4eeeeae42bdb6138b08c5f20711a8b426db606da /Makefile.pre.in | |
parent | 9007dec606b790c05e158e588b696f3c210c2795 (diff) | |
download | cpython-3e718cf880e8994d76f6296a502497c16a956644.zip cpython-3e718cf880e8994d76f6296a502497c16a956644.tar.gz cpython-3e718cf880e8994d76f6296a502497c16a956644.tar.bz2 |
gh-95218: Move tests for importlib.resources into test_importlib.resources. (#95219)
* gh-95218: Move tests for importlib.resources into test_importlib.resources.
* Also update makefile
* Include test_importlib/resources in code ownership rule.
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index dd02165..ab44f21 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -1926,15 +1926,6 @@ TESTSUBDIRS= distutils/tests \ test/test_importlib \ test/test_importlib/builtin \ test/test_importlib/data \ - test/test_importlib/data01 \ - test/test_importlib/data01/subdirectory \ - test/test_importlib/data02 \ - test/test_importlib/data02/one \ - test/test_importlib/data02/two \ - test/test_importlib/data03 \ - test/test_importlib/data03/namespace \ - test/test_importlib/data03/namespace/portion1 \ - test/test_importlib/data03/namespace/portion2 \ test/test_importlib/extension \ test/test_importlib/frozen \ test/test_importlib/import_ \ @@ -1958,12 +1949,21 @@ TESTSUBDIRS= distutils/tests \ test/test_importlib/namespace_pkgs/project3 \ test/test_importlib/namespace_pkgs/project3/parent \ test/test_importlib/namespace_pkgs/project3/parent/child \ - test/test_importlib/namespacedata01 \ test/test_importlib/partial \ test/test_importlib/resources \ + test/test_importlib/resources/data01 \ + test/test_importlib/resources/data01/subdirectory \ + test/test_importlib/resources/data02 \ + test/test_importlib/resources/data02/one \ + test/test_importlib/resources/data02/two \ + test/test_importlib/resources/data03 \ + test/test_importlib/resources/data03/namespace \ + test/test_importlib/resources/data03/namespace/portion1 \ + test/test_importlib/resources/data03/namespace/portion2 \ + test/test_importlib/resources/namespacedata01 \ + test/test_importlib/resources/zipdata01 \ + test/test_importlib/resources/zipdata02 \ test/test_importlib/source \ - test/test_importlib/zipdata01 \ - test/test_importlib/zipdata02 \ test/test_json \ test/test_lib2to3 \ test/test_lib2to3/data \ |