13 lines
366 B
PowerShell
13 lines
366 B
PowerShell
$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."
|