mirror of
https://github.com/Unleash/unleash.git
synced 2024-10-28 19:06:12 +01:00
14 lines
198 B
Bash
14 lines
198 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -feu
|
||
|
|
||
|
cd "$(dirname "$0")"
|
||
|
|
||
|
. ../env.sh
|
||
|
|
||
|
artillery run ./artillery.yaml --output artillery.json
|
||
|
|
||
|
artillery report artillery.json
|
||
|
|
||
|
echo "See artillery.json.html for results"
|