Skip to content

Commit

Permalink
E2e test fix (#55)
Browse files Browse the repository at this point in the history
* Update run-e2e-test.sh
  • Loading branch information
ChristianAtDell committed Oct 15, 2024
1 parent 86582a6 commit 1da7c0e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/run-e2e-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export GO111MODULE=on
export ACK_GINKGO_DEPRECATIONS=1.16.4
export ACK_GINKGO_RC=true

if ! (go get -u github.com/onsi/ginkgo/ginkgo); then
if ! (cd tests/e2e && go mod vendor && go get -u github.com/onsi/ginkgo/ginkgo); then
echo "go mod vendor or go get ginkgo error"
exit 1
fi
Expand All @@ -29,7 +29,7 @@ else
read -ra OPTS <<<"-v $GINKGO_OPTS"
fi

cd tests/e2e && ginkgo "${OPTS[@]}"
cd tests/e2e && ginkgo -mod=mod "${OPTS[@]}"

# Checking for test status
TEST_PASS=$?
Expand Down

0 comments on commit 1da7c0e

Please sign in to comment.