Skip to content

Commit dda522e

Browse files
committed
🔥 Remove a test that doesn't apply to the new resolver
1 parent 6c3d40e commit dda522e

File tree

1 file changed

+0
-26
lines changed

1 file changed

+0
-26
lines changed

tests/functional/test_install_reqs.py

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -211,32 +211,6 @@ def test_multiple_constraints_files(script, data):
211211
assert 'installed Upper-1.0' in result.stdout
212212

213213

214-
def test_respect_order_in_requirements_file(script, data):
215-
script.scratch_path.joinpath("frameworks-req.txt").write_text(textwrap.dedent("""\
216-
parent
217-
child
218-
simple
219-
"""))
220-
221-
result = script.pip(
222-
'install', '--no-index', '-f', data.find_links, '-r',
223-
script.scratch_path / 'frameworks-req.txt'
224-
)
225-
226-
downloaded = [line for line in result.stdout.split('\n')
227-
if 'Processing' in line]
228-
229-
assert 'parent' in downloaded[0], (
230-
'First download should be "parent" but was "{}"'.format(downloaded[0])
231-
)
232-
assert 'child' in downloaded[1], (
233-
'Second download should be "child" but was "{}"'.format(downloaded[1])
234-
)
235-
assert 'simple' in downloaded[2], (
236-
'Third download should be "simple" but was "{}"'.format(downloaded[2])
237-
)
238-
239-
240214
def test_install_local_editable_with_extras(script, data):
241215
to_install = data.packages.joinpath("LocalExtras")
242216
res = script.pip_install_local(

0 commit comments

Comments
 (0)