mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-30 00:37:52 +03:00
12 lines
316 B
PowerShell
12 lines
316 B
PowerShell
Set-StrictMode -Version latest
|
|
$ErrorActionPreference = 'Stop'
|
|
|
|
powershell write-host -foregroundcolor Cyan "----- tests -----"
|
|
|
|
& $PSScriptRoot\test_prerequisites.ps1
|
|
if ($LASTEXITCODE) { Throw }
|
|
& $PSScriptRoot\test_unit.ps1
|
|
if ($LASTEXITCODE) { Throw }
|
|
& $PSScriptRoot\test_integ.ps1
|
|
if ($LASTEXITCODE) { Throw }
|