Remove --always-unzip based tests

This commit is contained in:
Devesh Kumar Singh 2020-06-24 21:36:15 +05:30
parent 0b5ad47cbf
commit bd70025c98
3 changed files with 1 additions and 8 deletions

View File

@ -540,8 +540,6 @@ _freeze_req_opts = textwrap.dedent("""\
# Unchanged requirements below this line
-r ignore.txt
--requirement ignore.txt
-Z ignore
--always-unzip ignore
-f http://ignore
-i http://ignore
--pre

View File

@ -87,8 +87,7 @@ def test_uninstall_easy_install_after_import(script):
Uninstall an easy_installed package after it's been imported
"""
result = script.easy_install('--always-unzip', 'INITools==0.2',
expect_stderr=True)
result = script.easy_install('INITools==0.2', expect_stderr=True)
# the import forces the generation of __pycache__ if the version of python
# supports it
script.run('python', '-c', "import initools")

View File

@ -378,10 +378,6 @@ class TestProcessLine(object):
)
assert expected in actual
def test_noop_always_unzip(self, line_processor, finder):
# noop, but confirm it can be set
line_processor("--always-unzip", "file", 1, finder=finder)
def test_set_finder_allow_all_prereleases(self, line_processor, finder):
line_processor("--pre", "file", 1, finder=finder)
assert finder.allow_all_prereleases