mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-30 00:37:52 +03:00
23 lines
527 B
PowerShell
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
|