mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-26 11:43:08 +03:00
17 lines
376 B
PowerShell
17 lines
376 B
PowerShell
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
|
|
hurlfmt --version
|
|
|
|
# run integration tests
|
|
cd $project_root_path\integration
|
|
python integration.py
|
|
|
|
cd $actual_dir
|