Files

13 lines
366 B
PowerShell
Raw Permalink Normal View History

2026-09-09 21:55:37 +08:00
$ErrorActionPreference = "Stop"
Write-Host "Python:"
python --version
Write-Host "Pip check:"
python -m pip check
Write-Host "Required tools:"
python -m pytest --version
python -m ruff --version
python -m mypy --version
python -m alembic --version
Write-Host "Environment checks completed. External service connectivity is checked by the integration test profile."