mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-12-20 17:41:50 +03:00
7 lines
127 B
Bash
7 lines
127 B
Bash
|
#!/bin/sh
|
||
|
set -e
|
||
|
echo "----- unit tests -----"
|
||
|
PATH="$HOME"/.cargo/bin:$PATH
|
||
|
export PATH
|
||
|
cargo test --features strict --tests
|