hurl/integration/tests_ok/tap.sh
2023-10-27 14:43:13 +02:00

12 lines
329 B
Bash
Executable File

#!/bin/bash
set -Eeuo pipefail
rm -f build/result.tap
# test.2.hurl is KO but we want the script to continue until the end
set +eo pipefail
hurl --test --report-tap build/result.tap tests_ok/test.1.hurl tests_ok/test.2.hurl
hurl --test --report-tap build/result.tap tests_ok/test.3.hurl
set -Eeuo pipefail
cat build/result.tap