Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
matteius committed Sep 28, 2024
1 parent 120dfbf commit e786b52
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/integration/test_install_vcs.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import os

import pytest


Expand All @@ -20,9 +22,9 @@ def test_install_github_vcs_with_credentials(pipenv_instance_pypi, use_credentia
if use_credentials:
os.environ['GIT_USERNAME'] = 'git' # Use 'git' as a dummy username
os.environ['GIT_PASSWORD'] = '' # Empty password for public repos
url = f"git+https://${{GIT_USERNAME}}:${{GIT_PASSWORD}}@${{GIT_REPO}}@2.16"
url = "git+https://${{GIT_USERNAME}}:${{GIT_PASSWORD}}@${{GIT_REPO}}@2.16"
else:
url = f"git+https://${{GIT_REPO}}@2.16"
url = "git+https://${{GIT_REPO}}@2.16"

c = p.pipenv(f"install {url}")
assert not c.returncode
Expand Down

0 comments on commit e786b52

Please sign in to comment.