Fix typo in `python-pip-requests-ssl` test
In 44b79e2186, we removed `--root-user-action` from our `pip install` invocation, but missed the `ignore` value, so we've been installing https://pypi.org/project/ignore/ in this test ever since. 😂
This commit is contained in:
parent
59aa8bfc41
commit
ada5d3b226
|
|
@ -1,5 +1,5 @@
|
|||
import subprocess, sys
|
||||
subprocess.check_call([sys.executable, '-m', 'pip', 'install', 'ignore', 'requests'])
|
||||
subprocess.check_call([sys.executable, '-m', 'pip', 'install', 'requests'])
|
||||
|
||||
import requests
|
||||
r = requests.get('https://google.com')
|
||||
|
|
|
|||
Loading…
Reference in New Issue