hurl/bin/test/test.ps1

15 lines
385 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 }
2023-03-03 18:49:48 +03:00
& $PSScriptRoot\..\release\release.ps1
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 }
2023-03-03 18:49:48 +03:00