Skip to content

Commit

Permalink
Allow parameters to be passed to all tests
Browse files Browse the repository at this point in the history
Signed-off-by: João Pereira <joaod@vmware.com>
  • Loading branch information
joaopapereira committed Jun 3, 2024
1 parent 99ba904 commit 8bfc1a8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion hack/test-all-local-registry.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ trap cleanup EXIT
docker run -d -p "$PORT":5000 -e REGISTRY_VALIDATION_MANIFESTS_URLS_ALLOW='- ^https?://' --restart always --name registry-"$PORT" registry:2
export IMGPKG_E2E_IMAGE="localhost:$PORT/local-tests/test-repo"
export IMGPKG_E2E_RELOCATION_REPO="localhost:$PORT/local-tests/test-relocation-repo"
./hack/test-all.sh $@
./hack/test-all.sh ${@:2}
8 changes: 4 additions & 4 deletions hack/test-all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ fi

export IMGPKG_BINARY="$PWD/imgpkg${IMGPKG_BINARY_EXT-}"

./hack/test.sh
./hack/test-e2e.sh
./hack/test-perf.sh
./hack/test-helpers.sh
./hack/test.sh $@
./hack/test-e2e.sh $@
./hack/test-perf.sh $@
./hack/test-helpers.sh $@

echo ALL SUCCESS

0 comments on commit 8bfc1a8

Please sign in to comment.