hurl/bin/test/test.ps1

12 lines
316 B
PowerShell
Raw Normal View History

2022-12-28 12:20:27 +03:00
Set-StrictMode -Version latest
$ErrorActionPreference = 'Stop'
2022-09-27 10:04:21 +03:00
powershell write-host -foregroundcolor Cyan "----- tests -----"
& $PSScriptRoot\test_prerequisites.ps1
2022-12-28 12:20:27 +03:00
if ($LASTEXITCODE) { Throw }
2022-09-27 10:04:21 +03:00
& $PSScriptRoot\test_unit.ps1
2022-12-28 12:20:27 +03:00
if ($LASTEXITCODE) { Throw }
2022-09-27 10:04:21 +03:00
& $PSScriptRoot\test_integ.ps1
2022-12-28 12:20:27 +03:00
if ($LASTEXITCODE) { Throw }