Skip to content

Commit

Permalink
Merge pull request #18558 from michaelgrifalconi/py3-cleanup
Browse files Browse the repository at this point in the history
Fix python3-setuptools
  • Loading branch information
michaelgrifalconi committed Jan 31, 2024
2 parents ee8df6b + 0eeafa9 commit e7d8d99
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/console/python3_setuptools.pm
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ sub run_tests ($python3_spec_release) {
build_package($python_binary);
http_install_test($version_number);
local_install_test($version_number);
cleanup();
}

# Creating the source package with the name 'dist/user_package_setuptools-1.0.tar.gz' in the dist folder.
Expand Down Expand Up @@ -91,7 +90,7 @@ sub uninstall_package ($version_number) {

sub cleanup {
# Deletion of work folders
assert_script_run("rm -r dist user_package_setuptools.egg-info repo_webroot");
assert_script_run("rm -rf dist user_package_setuptools.egg-info repo_webroot");
assert_script_run("deactivate"); # leave the virtual env
}

Expand Down

0 comments on commit e7d8d99

Please sign in to comment.