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.
1 parent c6bf75d commit a26fb8eCopy full SHA for a26fb8e
.github/workflows/main.yaml
@@ -114,7 +114,7 @@ jobs:
114
run: make ginkgo kind
115
116
- name: Run e2e tests
117
- run: make e2e
+ run: make test-e2e
118
119
build:
120
runs-on: ubuntu-22.04
tests/scripts/fluentd_e2e.sh
@@ -67,9 +67,7 @@ function start_fluent_operator() {
67
68
function run_test() {
69
export ACK_GINKGO_RC=true
70
- "$GINKGO_BIN" -v "$E2E_DIR/e2e/fluentd/fluentd.test" -- "$debugflag"
71
-
72
- if [[ $? != 0 ]]; then
+ if ! "$GINKGO_BIN" -v "$E2E_DIR/e2e/fluentd/fluentd.test" -- "$debugflag"; then
73
echo "Integration suite has failures, Please check !!"
74
exit 1
75
else
0 commit comments