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
520 B
16 lines
520 B
#!/usr/bin/env bash |
|
|
|
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd ) |
|
cd "$SCRIPT_DIR" |
|
|
|
if [ -z "$TEST_SERVER_ADDRESS" ]; then |
|
source export.sh |
|
fi |
|
|
|
# tavern-ci --alluredir=reports test_plans/users_api.tavern.yaml |
|
|
|
tavern-ci --alluredir=reports test_plans/items_api.tavern.yaml |
|
|
|
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
|
|
|