mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-26 00:22:10 +03:00
20 lines
320 B
Bash
Executable File
20 lines
320 B
Bash
Executable File
#!/bin/bash
|
|
set -Eeuo pipefail
|
|
|
|
echo "----- integration tests -----"
|
|
|
|
# hurl infos
|
|
command -v hurl
|
|
command -v hurlfmt
|
|
hurl --version
|
|
hurlfmt --version
|
|
|
|
# integration tests
|
|
cd integration || exit
|
|
./integration.py
|
|
./test_curl_commands.sh
|
|
./test_html_output.py tests_ok/*.html tests_failed/*.html
|
|
./ad_hoc.sh
|
|
./report.py
|
|
|