We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e94b2ea commit 7f28547Copy full SHA for 7f28547
tests/functional/test_install.py
@@ -60,6 +60,23 @@ def test_with_setuptools_and_import_error(script, data):
60
assert "ImportError: toto" in result.stderr
61
62
63
+def test_without_ntlm(script, data):
64
+ result = script.run(
65
+ "python", "-c",
66
+ "import pip; pip.main(["
67
+ "'install', "
68
+ "'INITools==0.2', "
69
+ "'-f', '%s', "
70
+ "'--auth-ntlm'])" % data.packages,
71
+ expect_error=True,
72
+ )
73
+ assert (
74
+ "Dependencies for Ntlm authentication are missing. Install "
75
+ "dependencies via the 'pip install pip[ntlm]' command."
76
+ in result.stderr
77
78
+
79
80
def test_pip_second_command_line_interface_works(script, data):
81
"""
82
Check if ``pip<PYVERSION>`` commands behaves equally
0 commit comments