Skip to content

Commit

Permalink
skip conftest on e2eignored examples
Browse files Browse the repository at this point in the history
  • Loading branch information
lonegunmanb committed Feb 27, 2025
1 parent 090ef41 commit de60640
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions avm_scripts/conftest.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@ for d in $(find . -maxdepth 1 -mindepth 1 -type d); do
cd "$d"
echo "==> Checking $d"

if [ -f ".e2eignore" ]; then
echo "==> Skipping $d due to .e2eignore file"
cd - >/dev/null 2>&1
continue
fi

echo "==> Initializing Terraform..."
terraform init -input=false
echo "==> Running Terraform plan..."
Expand Down

0 comments on commit de60640

Please sign in to comment.