hurl/bin/test/test.ps1
2023-03-03 17:54:20 +01:00

15 lines
385 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\..\release\release.ps1
if ($LASTEXITCODE) { Throw }
& $PSScriptRoot\test_integ.ps1
if ($LASTEXITCODE) { Throw }