Lines Matching full:pip
168 'pip',
171 'pip',
415 """Test venv module installation of pip."""
420 'try:\n import pip\nexcept ImportError:\n print("OK")'])
452 # pip's cross-version compatibility may trigger deprecation
456 # ensurepip is different enough from a normal pip invocation
457 # that we want to ensure it ignores the normal pip environment
462 # Also check that we ignore the pip configuration file
469 win_location = ("pip", "pip.ini")
470 posix_location = (".pip", "pip.conf")
491 # Ensure pip is available in the virtual environment
493 # Ignore DeprecationWarning since pip code is not part of Python
496 '-m', 'pip', '--version'])
502 expected_version = "pip {}".format(ensurepip.version())
522 # "The directory '$HOME/.cache/pip/http' or its parent directory
525 # executing pip with sudo, you may want sudo's -H flag."
533 # future pip versions, this test can likely be relaxed further.
535 self.assertIn("Successfully uninstalled pip", out)
537 # Check pip is now gone from the virtual environment. This only
539 # other case, pip may still be available in the system site-packages
543 # Issue #26610: pip/pep425tags.py requires ctypes
544 @unittest.skipUnless(ctypes, 'pip requires ctypes')