mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-26 11:43:08 +03:00
12 lines
332 B
Bash
Executable File
12 lines
332 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
echo "----- integration tests -----"
|
|
export PATH="$PWD/target/release:$PATH"
|
|
cd integration || exit
|
|
./integration.py
|
|
./test_curl_commands.sh "$(find ./tests_ok ./tests_failed -maxdepth 1 -type f -name '*.curl' ! -name '*windows*')"
|
|
./test_html_output.py tests_ok/*.html tests_failed/*.html
|
|
./ad_hoc.sh
|
|
./report.py
|