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