hurl/bin/test/test_integ.ps1
2022-12-28 10:20:27 +01:00

23 lines
527 B
PowerShell

Set-StrictMode -Version latest
$ErrorActionPreference = 'Stop'
powershell write-host -foregroundcolor Cyan "----- integration tests -----"
$actual_dir=(Get-Location).Path
$project_root_path=(Resolve-Path -LiteralPath $PSScriptRoot\..\..).path
# hurl infos
(Get-Command hurl).Path
(Get-Command hurlfmt).Path
hurl --version
if ($LASTEXITCODE) { Throw }
hurlfmt --version
if ($LASTEXITCODE) { Throw }
# run integration tests
cd $project_root_path\integration
python integration.py
if ($LASTEXITCODE) { Throw }
cd $actual_dir