Skip to content

Commit 962835d

Browse files
committed
Remove reliance on distutils commands for external dependencies check.
1 parent cd795f1 commit 962835d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

setuptools/tests/test_virtualenv.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,5 +110,4 @@ def test_no_missing_dependencies(bare_venv, request):
110110
Quick and dirty test to ensure all external dependencies are vendored.
111111
"""
112112
setuptools_dir = request.config.rootdir
113-
for command in ('upload',): # sorted(distutils.command.__all__):
114-
bare_venv.run(['python', 'setup.py', command, '-h'], cwd=setuptools_dir)
113+
bare_venv.run(['python', 'setup.py', '--help'], cwd=setuptools_dir)

0 commit comments

Comments
 (0)