hurl/integration/tests_ok/junit.ps1

9 lines
341 B
PowerShell
Raw Normal View History

2023-04-19 20:04:03 +03:00
Set-StrictMode -Version latest
$ErrorActionPreference = 'Stop'
if (Test-Path build/result.xml) {
Remove-Item build/result.xml
}
hurl --test --report-junit build/result.xml tests_ok/test.1.hurl tests_ok/test.2.hurl
hurl --test --report-junit build/result.xml tests_ok/test.3.hurl
2023-04-20 19:31:11 +03:00
Write-Host (Get-Content build/result.xml -Raw) -NoNewLine