You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
395 B
16 lines
395 B
#!/usr/bin/env bash |
|
|
|
if [ -z "$1" ]; then |
|
echo "Usage: $0 <test plan>" |
|
exit 1 |
|
fi |
|
|
|
if [ -z "$TEST_SERVER_ADDRESS" ]; then |
|
source export.sh |
|
fi |
|
|
|
tavern-ci --alluredir=reports $1 |
|
|
|
allure generate --clean --single-file --output /tmp/vm-allure-report --name index.html reports |
|
|
|
# allure package: https://github.com/allure-framework/allure2/releases/download/2.34.0/allure_2.34.0-1_all.deb
|
|
|