Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.11/site-packages/pip/_internal/vcs/__init__.py: 83%

Shortcuts on this page

r m x   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

6 statements  

1# Expose a limited set of classes and functions so callers outside of 

2# the vcs package don't need to import deeper than `pip._internal.vcs`. 

3# (The test directory may still need to import from a vcs sub-package.) 

4# Import all vcs modules to register each VCS in the VcsSupport object. 

5import pip._internal.vcs.bazaar 

6import pip._internal.vcs.git 

7import pip._internal.vcs.mercurial 

8import pip._internal.vcs.subversion # noqa: F401 

9from pip._internal.vcs.versioncontrol import ( # noqa: F401 

10 RemoteNotFoundError, 

11 RemoteNotValidError, 

12 is_url, 

13 make_vcs_requirement_url, 

14 vcs, 

15)