mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-12-18 16:11:34 +03:00
7 lines
226 B
Bash
Executable File
7 lines
226 B
Bash
Executable File
#!/bin/bash
|
|
set -Eeuo pipefail
|
|
rm -f 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
|
|
cat build/result.xml
|