mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-30 00:37:52 +03:00
14 lines
306 B
Bash
Executable File
14 lines
306 B
Bash
Executable File
#!/bin/bash
|
|
set -Eeuo pipefail
|
|
|
|
echo "----- unit tests -----"
|
|
PATH="$HOME"/.cargo/bin:$PATH
|
|
export PATH
|
|
cargo test --release
|
|
|
|
# Return PATH var to parent shell
|
|
package_dir="$(cd target/release ; pwd)"
|
|
echo "Run this if you want to use fresh builded hurl package:"
|
|
echo " export PATH=$package_dir:$PATH"
|
|
|