Skip to content

Commit

Permalink
Work around pytest tmpdir 30 character disambiguation limit for now.
Browse files Browse the repository at this point in the history
  • Loading branch information
jsirois committed Oct 21, 2024
1 parent c155620 commit 917055a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integration/cli/commands/test_lock_sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -1034,7 +1034,7 @@ def test_sync_venv_run_retain_pip_preinstalled(
):
# type: (...) -> None

venv_dir = os.path.join(str(tmpdir), "venv")
venv_dir = os.path.join(str(tmpdir), "venv-pip-preinstalled")
venv = Virtualenv.create(venv_dir, install_pip=InstallationChoice.YES)
pip = find_distribution("pip", search_path=venv.sys_path)
assert pip is not None
Expand Down Expand Up @@ -1079,7 +1079,7 @@ def test_sync_venv_run_retain_pip_no_pip_preinstalled(
):
# type: (...) -> None

venv_dir = os.path.join(str(tmpdir), "venv")
venv_dir = os.path.join(str(tmpdir), "venv-no-pip-preinstalled")
lock = os.path.join(str(tmpdir), "lock.json")
run_sync(
*(
Expand Down

0 comments on commit 917055a

Please sign in to comment.