Pipfile Jun 2026

[tests] pytest-cov = " " pytest-mock = " "

Common development dependencies include testing frameworks (pytest), code formatters (black), type checkers (mypy), and linting tools (ruff, flake8). Pipfile

[requires] python_version = "3.12"

: Works alongside a machine-generated Pipfile.lock to ensure deterministic builds, meaning every environment (development, staging, production) uses the exact same package versions and hashes. [tests] pytest-cov = " " pytest-mock = "

| Command | Description | |---------|-------------| | pipenv install [package] | Install package, update Pipfile and lock | | pipenv install --dev [package] | Install development dependency | | pipenv uninstall [package] | Remove package | | pipenv lock | Generate/update Pipfile.lock | | pipenv sync | Install from lock file (no changes) | | pipenv install --deploy | Install with CI-safe lock validation | | pipenv run <command> | Run command inside virtual environment | | pipenv shell | Spawn shell within virtual environment | | pipenv graph | Display dependency tree | | pipenv check | Check for security vulnerabilities | | pipenv lock -r | Export to requirements.txt | | pipenv clean | Remove packages not in lock file | | pipenv --where | Show project directory | | pipenv --venv | Show virtual environment location | | pipenv --python | Show Python interpreter being used | code formatters (black)