mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-05 22:50:18 +00:00
6ac1451ec8
* Move away from requirementslib models * Revise test since PEP-440 does not support wildcard versions but does support equivalent compatible release specifiers. * simplify and remove dead code * Ensure the os_name marker is AND with the other markers. * Move what we still need from requirementslib into the pipenv utils and stop vendoring it. * Remove requirementslib. * force upgrade of virtualenv for python 3.12 * remove virtualenv-clone * Update vcs specifiers documentation; infer name from specific pip line formats where possible. * Provide helpful text and error for recently removed commands * Set the right log levels and verbosity to show users the errors generated by pip resolver when supplying -v flag * Fix the collection of all matching package hashes for non-pypi indexes. Plus lesson from testing torch which contains local identifiers.
89 lines
2.5 KiB
Python
89 lines
2.5 KiB
Python
import os
|
|
from pathlib import Path
|
|
|
|
import pytest
|
|
|
|
from pipenv.utils.processes import subprocess_run
|
|
|
|
# This module is run only on Windows.
|
|
pytestmark = pytest.mark.skipif(os.name != 'nt', reason="only relevant on windows")
|
|
|
|
|
|
@pytest.mark.project
|
|
def test_case_changes_windows(pipenv_instance_pypi):
|
|
"""Test project matching for case changes on Windows.
|
|
"""
|
|
with pipenv_instance_pypi() as p:
|
|
c = p.pipenv('install pytz')
|
|
assert c.returncode == 0
|
|
|
|
# Canonical venv location.
|
|
c = p.pipenv('--venv')
|
|
assert c.returncode == 0
|
|
virtualenv_location = c.stdout.strip()
|
|
|
|
# Dance around to change the casing of the project directory.
|
|
target = p.path.upper()
|
|
if target == p.path:
|
|
target = p.path.lower()
|
|
os.chdir('..')
|
|
os.chdir(target)
|
|
assert os.path.abspath(os.curdir) != p.path
|
|
|
|
# Ensure the incorrectly-cased project can find the correct venv.
|
|
c = p.pipenv('--venv')
|
|
assert c.returncode == 0
|
|
assert c.stdout.strip().lower() == virtualenv_location.lower()
|
|
|
|
|
|
@pytest.mark.files
|
|
@pytest.mark.local
|
|
def test_local_path_windows(pipenv_instance_pypi):
|
|
whl = (
|
|
Path(__file__).parent.parent
|
|
.joinpath('pypi', 'six', 'six-1.11.0-py2.py3-none-any.whl')
|
|
)
|
|
try:
|
|
whl = whl.resolve()
|
|
except OSError:
|
|
whl = whl.absolute()
|
|
with pipenv_instance_pypi() as p:
|
|
c = p.pipenv(f'install "{whl}" -v')
|
|
assert c.returncode == 0
|
|
|
|
|
|
@pytest.mark.local
|
|
@pytest.mark.files
|
|
def test_local_path_windows_forward_slash(pipenv_instance_pypi):
|
|
whl = (
|
|
Path(__file__).parent.parent
|
|
.joinpath('pypi', 'six', 'six-1.11.0-py2.py3-none-any.whl')
|
|
)
|
|
try:
|
|
whl = whl.resolve()
|
|
except OSError:
|
|
whl = whl.absolute()
|
|
with pipenv_instance_pypi() as p:
|
|
c = p.pipenv(f'install "{whl.as_posix()}" -v')
|
|
assert c.returncode == 0
|
|
|
|
|
|
@pytest.mark.cli
|
|
def test_pipenv_clean_windows(pipenv_instance_pypi):
|
|
with pipenv_instance_pypi() as p:
|
|
c = p.pipenv('install dataclasses-json')
|
|
assert c.returncode == 0
|
|
c = p.pipenv(f'run pip install -i {p.index_url} click')
|
|
assert c.returncode == 0
|
|
|
|
c = p.pipenv('clean --dry-run')
|
|
assert c.returncode == 0
|
|
assert 'click' in c.stdout.strip()
|
|
|
|
|
|
@pytest.mark.cli
|
|
def test_pipenv_run_with_special_chars_windows(pipenv_instance_pypi):
|
|
with pipenv_instance_pypi():
|
|
c = subprocess_run(["pipenv", "run", "echo", "[3-1]"])
|
|
assert c.returncode == 0, c.stderr
|