Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion hack/run-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,15 @@ main() {
NO_COLOR="--no-color"
fi

LABEL_FILTER_FLAG=""
Copy link
Copy Markdown
Contributor

@Tal-or Tal-or Feb 23, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can't we just use the EXTRA_PARAMS flag?
If we do, no code change are needed

if [ -n "$GINKGO_LABEL_FILTER" ]; then
LABEL_FILTER_FLAG="--label-filter=${GINKGO_LABEL_FILTER}"
fi

MESSAGE="${HEADER_MESSAGE}: ${GINKGO_SUITS}"
print ${MESSAGE}

GINKGO_FLAGS="${NO_COLOR} ${DRY_RUN} ${EXTRA_PARAMS} --require-suite ${REPORT_PARAMS} ${GINKGO_SUITS}"
GINKGO_FLAGS="${NO_COLOR} ${DRY_RUN} ${EXTRA_PARAMS} ${LABEL_FILTER_FLAG} --require-suite ${REPORT_PARAMS} ${GINKGO_SUITS}"
print "Command to run: GOFLAGS=-mod=vendor ginkgo ${GINKGO_FLAGS}"

if [ "$ONLY_CLI_PRINT" = true ]; then
Expand Down