mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-22 15:42:20 +03:00
9 lines
228 B
PowerShell
9 lines
228 B
PowerShell
Set-StrictMode -Version latest
|
|
$ErrorActionPreference = 'Stop'
|
|
|
|
powershell write-host -foregroundcolor Cyan "----- unit tests -----"
|
|
|
|
# run test units
|
|
cargo test --release --features strict --tests
|
|
if ($LASTEXITCODE) { Throw }
|