summaryrefslogtreecommitdiff
path: root/setuptools/tests/test_config_discovery.py
diff options
context:
space:
mode:
Diffstat (limited to 'setuptools/tests/test_config_discovery.py')
-rw-r--r--setuptools/tests/test_config_discovery.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/setuptools/tests/test_config_discovery.py b/setuptools/tests/test_config_discovery.py
index fac365f4..f6c114af 100644
--- a/setuptools/tests/test_config_discovery.py
+++ b/setuptools/tests/test_config_discovery.py
@@ -508,6 +508,15 @@ def test_compatible_with_numpy_configuration(tmp_path):
assert dist.packages is None
+def test_name_discovery_doesnt_break_cli(tmpdir_cwd):
+ jaraco.path.build({"pkg.py": ""})
+ dist = Distribution({})
+ dist.script_args = ["--name"]
+ dist.set_defaults()
+ dist.parse_command_line() # <-- no exception should be raised here.
+ assert dist.get_name() == "pkg"
+
+
def _populate_project_dir(root, files, options):
# NOTE: Currently pypa/build will refuse to build the project if no
# `pyproject.toml` or `setup.py` is found. So it is impossible to do