diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2021-07-18 15:13:50 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2021-07-18 15:13:50 -0400 |
commit | 01f2abe71dc72fdf5b345f4ac3086a94b23efd15 (patch) | |
tree | 83bee7a6d933efe516f549423bff38f0d303a760 /setuptools/tests/test_build_ext.py | |
parent | 5c24e780b83e4557ca6e9e48b468e6f4a82695c9 (diff) | |
parent | aa5ef507f3bf78092abfff7c6a2cf55a9b2fb2dc (diff) | |
download | python-setuptools-git-01f2abe71dc72fdf5b345f4ac3086a94b23efd15.tar.gz |
Merge branch 'main' into change-docs-theme
Diffstat (limited to 'setuptools/tests/test_build_ext.py')
-rw-r--r-- | setuptools/tests/test_build_ext.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/setuptools/tests/test_build_ext.py b/setuptools/tests/test_build_ext.py index 838fdb42..b6deebe4 100644 --- a/setuptools/tests/test_build_ext.py +++ b/setuptools/tests/test_build_ext.py @@ -2,12 +2,13 @@ import sys import distutils.command.build_ext as orig from distutils.sysconfig import get_config_var +from jaraco import path + from setuptools.command.build_ext import build_ext, get_abi3_suffix from setuptools.dist import Distribution from setuptools.extension import Extension from . import environment -from .files import build_files from .textwrap import DALS @@ -103,10 +104,10 @@ def test_build_ext_config_handling(tmpdir_cwd): 'setup.cfg': DALS( """ [build] - build-base = foo_build + build_base = foo_build """), } - build_files(files) + path.build(files) code, output = environment.run_setup_py( cmd=['build'], data_stream=(0, 2), ) |