We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
test-smoke
1 parent da95168 commit 75b3876Copy full SHA for 75b3876
acceptance-tests/bin/test-smoke
@@ -1,7 +1,9 @@
1
#!/usr/bin/env bash
2
set -eu -o pipefail
3
-set -e
4
5
-go run github.com/onsi/ginkgo/v2/ginkgo --skip-package vendor -r "$@"
+ACCEPTANCE_TESTS_ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
6
7
-echo -e "\n\033[0;32mSUCCESS\033[0m"
+pushd "${ACCEPTANCE_TESTS_ROOT}"
+ go run github.com/onsi/ginkgo/v2/ginkgo run -r "$@"
8
+ echo -e "\n\033[0;32mSUCCESS\033[0m"
9
+popd
0 commit comments