Merge pull request 'fix: try fix empty outputs' (#100) from fix/acc_test into main

Reviewed-on: #100
This commit is contained in:
Marcel_Henselin 2026-03-27 17:35:01 +00:00
commit a0351798e0
Signed by: tf-provider.git.onstackit.cloud
GPG key ID: 6D7E8A1ED8955A9C

View file

@ -221,6 +221,16 @@ runs:
echo "result=no result before run" >> "$GITHUB_OUTPUT"
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
cd stackit || exit 1
TF_ACC=1 \