fix: try fix empty outputs #100
1 changed files with 10 additions and 0 deletions
10
.github/actions/acc_test/action.yaml
vendored
10
.github/actions/acc_test/action.yaml
vendored
|
|
@ -221,6 +221,16 @@ runs:
|
||||||
echo "result=no result before run" >> "$GITHUB_OUTPUT"
|
echo "result=no result before run" >> "$GITHUB_OUTPUT"
|
||||||
|
|
||||||
echo "Running acceptance tests for the terraform provider"
|
echo "Running acceptance tests for the terraform provider"
|
||||||
|
|
||||||
|
if [[ -z "$testfile" ]]; then
|
||||||
|
testfile="./..."
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ -z "$testfile" ]]; then
|
||||||
|
echo "ERROR: No test file provided"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
set +e
|
set +e
|
||||||
cd stackit || exit 1
|
cd stackit || exit 1
|
||||||
TF_ACC=1 \
|
TF_ACC=1 \
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue