Skip to content

Commit

Permalink
[Test infra] Enable manual trigger of e2e test (#1006)
Browse files Browse the repository at this point in the history
* Test PR test on 1.1.x

* Test run for 1.1.x

* add test comment to run test with a fresh image

* update test comment to run test with a fresh image

* Enable manual test for 1.1.x

* Enable manual test for 1.1.x

* Enable manual test for 1.1.x

* Enable manual test for 1.1.x

* Trigger pr test
  • Loading branch information
josephca authored Feb 26, 2024
1 parent f935de2 commit 901ac48
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .ibm/pipelines/functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@ EOF

skip_if_only() {
echo "Checking if tests need to be executed..."

if [[ ${SKIP_TEST,,} == "false" ]]; then
echo "\$SKIP_TEST is false => Force running tests."
return
fi

NAMES=$(git diff --merge-base --name-only 1.1.x)
for change in ${NAMES}; do
skip $change
Expand Down

0 comments on commit 901ac48

Please sign in to comment.