Skip to content

Commit a8aa9b3

Browse files
committed
fix import
1 parent 19cbf85 commit a8aa9b3

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

tests/integration/test_install_uri.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,11 @@
1111
@pytest.mark.install
1212
@pytest.mark.needs_internet
1313
def 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"

tests/unit/test_vcs.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,7 @@
33
import pytest
44

55
from 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

139
def test_vcs_url_processor_basic_expansion():

0 commit comments

Comments
 (0)