summaryrefslogtreecommitdiff
path: root/setuptools/tests/test_build_py.py
diff options
context:
space:
mode:
Diffstat (limited to 'setuptools/tests/test_build_py.py')
-rw-r--r--setuptools/tests/test_build_py.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/setuptools/tests/test_build_py.py b/setuptools/tests/test_build_py.py
index 78a31ac4..19c8b780 100644
--- a/setuptools/tests/test_build_py.py
+++ b/setuptools/tests/test_build_py.py
@@ -18,7 +18,6 @@ def test_directories_in_package_data_glob(tmpdir_cwd):
script_name='setup.py',
script_args=['build_py'],
packages=[''],
- name='foo',
package_data={'': ['path/*']},
))
os.makedirs('path/subpath')
@@ -40,7 +39,6 @@ def test_read_only(tmpdir_cwd):
script_args=['build_py'],
packages=['pkg'],
package_data={'pkg': ['data.dat']},
- name='pkg',
))
os.makedirs('pkg')
open('pkg/__init__.py', 'w').close()
@@ -70,7 +68,6 @@ def test_executable_data(tmpdir_cwd):
script_args=['build_py'],
packages=['pkg'],
package_data={'pkg': ['run-me']},
- name='pkg',
))
os.makedirs('pkg')
open('pkg/__init__.py', 'w').close()