diff options
Diffstat (limited to 'setuptools/tests/config/test_expand.py')
-rw-r--r-- | setuptools/tests/config/test_expand.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/setuptools/tests/config/test_expand.py b/setuptools/tests/config/test_expand.py index 1898792b..2461347d 100644 --- a/setuptools/tests/config/test_expand.py +++ b/setuptools/tests/config/test_expand.py @@ -88,9 +88,10 @@ def test_resolve_class(): @pytest.mark.parametrize( 'args, pkgs', [ - ({"where": ["."]}, {"pkg", "other"}), - ({"where": [".", "dir1"]}, {"pkg", "other", "dir2"}), + ({"where": ["."], "namespaces": False}, {"pkg", "other"}), + ({"where": [".", "dir1"], "namespaces": False}, {"pkg", "other", "dir2"}), ({"namespaces": True}, {"pkg", "other", "dir1", "dir1.dir2"}), + ({}, {"pkg", "other", "dir1", "dir1.dir2"}), # default value for `namespaces` ] ) def test_find_packages(tmp_path, monkeypatch, args, pkgs): |