We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c8c2df6 commit 3e50a8bCopy full SHA for 3e50a8b
scripts/subtests/unit-test
@@ -10,6 +10,8 @@ if [ "${CI:-false}" = 'false' ]; then
10
flags="${flags} -p"
11
fi
12
pushd "${SCRIPT_DIR}/../../src" > /dev/null
13
- go run github.com/onsi/ginkgo/v2/ginkgo $flags
14
-popd > /dev/null
15
-
+ if ! command -v ginkgo &> /dev/null; then
+ go install github.com/onsi/ginkgo/v2/ginkgo@latest
+ fi
16
+ ginkgo $flags
17
+popd > /dev/null
0 commit comments