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