Skip to content

Commit 75ae612

Browse files
Noah Gornysbidoul
Noah Gorny
andauthored
Update tests/functional/test_uninstall.py
Remove unneeded checks, we only want to check uninstall works Co-authored-by: Stéphane Bidoul <[email protected]>
1 parent e040e0f commit 75ae612

File tree

1 file changed

+2
-12
lines changed

1 file changed

+2
-12
lines changed

tests/functional/test_uninstall.py

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -426,18 +426,8 @@ def test_uninstall_per_setup_options(script):
426426
""")
427427
)
428428

429-
result = script.pip('install', pkga_path)
430-
result2 = script.pip('uninstall', '-r', 'test-req.txt', '-y')
431-
assert_all_changes(
432-
result,
433-
result2,
434-
[
435-
script.venv / 'build',
436-
script.venv / 'src',
437-
script.scratch / 'test-req.txt',
438-
script.site_packages / 'easy-install.pth',
439-
],
440-
)
429+
script.pip('install', pkga_path)
430+
script.pip('uninstall', '-r', 'test-req.txt', '-y')
441431

442432

443433
def test_uninstallpathset_no_paths(caplog):

0 commit comments

Comments
 (0)