Skip to content

Commit

Permalink
Remove reliance on distutils commands for external dependencies check.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Sep 6, 2024
1 parent cd795f1 commit 962835d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions setuptools/tests/test_virtualenv.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,5 +110,4 @@ def test_no_missing_dependencies(bare_venv, request):
Quick and dirty test to ensure all external dependencies are vendored.
"""
setuptools_dir = request.config.rootdir
for command in ('upload',): # sorted(distutils.command.__all__):
bare_venv.run(['python', 'setup.py', command, '-h'], cwd=setuptools_dir)
bare_venv.run(['python', 'setup.py', '--help'], cwd=setuptools_dir)

0 comments on commit 962835d

Please sign in to comment.