mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-12-27 13:03:11 +03:00
9 lines
178 B
Bash
Executable File
9 lines
178 B
Bash
Executable File
#!/bin/bash
|
|
set -Eeuo pipefail
|
|
|
|
"$(dirname "$0")"/test_prerequisites.sh
|
|
"$(dirname "$0")"/test_unit.sh
|
|
export PATH="${PWD}/target/release:$PATH"
|
|
"$(dirname "$0")"/test_integ.sh
|
|
|