File tree Expand file tree Collapse file tree 2 files changed +2
-7
lines changed
Expand file tree Collapse file tree 2 files changed +2
-7
lines changed Original file line number Diff line number Diff line change 1111@pytest .mark .install
1212@pytest .mark .needs_internet
1313def test_basic_vcs_install_with_env_var (pipenv_instance_pypi ):
14+ from pipenv .cli import cli
1415 from pipenv .vendor .click .testing import (
1516 CliRunner ,
1617 ) # not thread safe but macos and linux will expand the env var otherwise
1718
18- from pipenv .cli import cli
19-
2019 with pipenv_instance_pypi () as p :
2120 # edge case where normal package starts with VCS name shouldn't be flagged as vcs
2221 os .environ ["GIT_HOST" ] = "github.com"
Original file line number Diff line number Diff line change 33import pytest
44
55from pipenv .exceptions import PipenvUsageError
6- from pipenv .utils .dependencies import (
7- VCSURLProcessor ,
8- install_req_from_pipfile ,
9- normalize_vcs_url
10- )
6+ from pipenv .utils .dependencies import VCSURLProcessor , install_req_from_pipfile , normalize_vcs_url
117
128
139def test_vcs_url_processor_basic_expansion ():
You can’t perform that action at this time.
0 commit comments