mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-12-28 05:23:56 +03:00
19 lines
305 B
Bash
Executable File
19 lines
305 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
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
|