Skip to content

Commit

Permalink
Skip wave tests when tower access token is not available
Browse files Browse the repository at this point in the history
Signed-off-by: Paolo Di Tommaso <[email protected]>
  • Loading branch information
pditommaso committed Feb 13, 2025
1 parent 420fb17 commit 6d2dafc
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions validation/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,10 @@ fi
# Wave
#
if [[ $TEST_MODE == 'test_wave' ]]; then
if [ "$TOWER_ACCESS_TOKEN" ]; then
echo "Wave tests"
bash wave.sh
else
echo "Missing TOWER_ACCESS_TOKEN variable -- Skipping Wave tests"
fi
fi

0 comments on commit 6d2dafc

Please sign in to comment.