2022-12-28 12:20:27 +03:00
|
|
|
Set-StrictMode -Version latest
|
|
|
|
$ErrorActionPreference = 'Stop'
|
|
|
|
|
2023-04-05 12:07:50 +03:00
|
|
|
write-host -foregroundcolor Cyan "----- tests -----"
|
2022-09-27 10:04:21 +03:00
|
|
|
|
2023-04-05 12:07:50 +03:00
|
|
|
. $PSScriptRoot\test_prerequisites.ps1
|
2022-12-28 12:20:27 +03:00
|
|
|
if ($LASTEXITCODE) { Throw }
|
2023-04-05 12:07:50 +03:00
|
|
|
. $PSScriptRoot\test_unit.ps1
|
2022-12-28 12:20:27 +03:00
|
|
|
if ($LASTEXITCODE) { Throw }
|
2023-04-05 12:07:50 +03:00
|
|
|
. $PSScriptRoot\..\release\release.ps1
|
2023-03-03 18:49:48 +03:00
|
|
|
if ($LASTEXITCODE) { Throw }
|
2023-04-05 12:07:50 +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
|
|
|
|