Skip to content

Commit b425fb8

Browse files
committed
Remove deprecated pseudo VCS URLs
- Ref: pypa/pip#9436 Signed-off-by: Keshav Priyadarshi <git@keshav.space>
1 parent a73c35b commit b425fb8

File tree

2 files changed

+0
-10
lines changed

2 files changed

+0
-10
lines changed

tests/test_vcs.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,6 @@ def obtain(dest, url):
3131
[
3232
pytest.param("git+http://github.com/jamesor/mongoose-versioner",
3333
"git", "github.com", id="git_http"),
34-
pytest.param("git://github.com/jamesor/mongoose-versioner",
35-
"git", "github.com", id="git"),
3634
pytest.param("git+https://github.com/jamesor/mongoose-versioner",
3735
"git", "github.com", id="git_https"),
3836
pytest.param("git+ssh://github.com/jamesor/mongoose-versioner",
@@ -45,8 +43,6 @@ def obtain(dest, url):
4543
"bzr", "gitlab.com", id="bzr_http"),
4644
pytest.param("bzr+https://gitlab.com/jamesor/mongoose-versioner",
4745
"bzr", "gitlab.com", id="bzr_https"),
48-
pytest.param("bzr://gitlab.com/jamesor/mongoose-versioner",
49-
"bzr", "gitlab.com", id="bzr"),
5046
pytest.param("bzr+ssh://gitlab.com/jamesor/mongoose-versioner",
5147
"bzr", "gitlab.com", id="bzr_ssh"),
5248
pytest.param("bzr+ftp://gitlab.com/jamesor/mongoose-versioner",
@@ -55,8 +51,6 @@ def obtain(dest, url):
5551
"bzr", "gitlab.com", id="bzr_sftp"),
5652
pytest.param("bzr+lp://gitlab.com/jamesor/mongoose-versioner",
5753
"bzr", "gitlab.com", id="bzr_lp"),
58-
pytest.param("hg://bitbucket.com/jamesor/mongoose-versioner",
59-
"hg", "bitbucket.com", id="hg"),
6054
pytest.param("hg+file://bitbucket.com/jamesor/mongoose-versioner",
6155
"hg", "bitbucket.com", id="hg_file"),
6256
pytest.param("hg+http://bitbucket.com/jamesor/mongoose-versioner",
@@ -67,8 +61,6 @@ def obtain(dest, url):
6761
"hg", "bitbucket.com", id="hg_ssh"),
6862
pytest.param("hg+static-http://bitbucket.com/jamesor/mongoose-versioner",
6963
"hg", "bitbucket.com", id="hg_static_http"),
70-
pytest.param("svn://bitbucket.com/jamesor/mongoose-versioner",
71-
"svn", "bitbucket.com", id="svn"),
7264
pytest.param("svn+http://bitbucket.com/jamesor/mongoose-versioner",
7365
"svn", "bitbucket.com", id="svn_http"),
7466
pytest.param("svn+https://bitbucket.com/jamesor/mongoose-versioner",

tests/test_vcs_git.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,6 @@ def obtain(dest, url):
3030
[
3131
pytest.param("git+http://github.com/jamesor/mongoose-versioner",
3232
"git", "github.com", id="git_http"),
33-
pytest.param("git://github.com/jamesor/mongoose-versioner",
34-
"git", "github.com", id="git"),
3533
pytest.param("git+https://github.com/jamesor/mongoose-versioner",
3634
"git", "github.com", id="git_https"),
3735
pytest.param("git+ssh://github.com/jamesor/mongoose-versioner",

0 commit comments

Comments
 (0)