File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
.github/actions/smoke-tests Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 7373 --durations=10 \
7474 --show-ic-logs=yes \
7575 --ad-secret=${{ inputs.azure-ad-secret }} \
76- -m ${{ inputs.marker != '' && inputs.marker || '""' }}
76+ -m ${{ inputs.marker != '' && inputs.marker || '""' }} \
77+ -v \
78+ -s
7779 working-directory : ./tests
7880 shell : bash
Original file line number Diff line number Diff line change @@ -190,7 +190,7 @@ def pytest_runtest_makereport(item) -> None:
190190 rep = outcome .get_result ()
191191
192192 # we only look at actual failing test calls, not setup/teardown
193- if rep .when == "call" and rep . failed and item .config .getoption ("--show-ic-logs" ) == "yes" :
193+ if rep .when == "call" and item .config .getoption ("--show-ic-logs" ) == "yes" :
194194 pod_namespace = item .funcargs ["ingress_controller_prerequisites" ].namespace
195195 pod_name = get_first_pod_name (item .funcargs ["kube_apis" ].v1 , pod_namespace )
196196 print ("\n ===================== IC Logs Start =====================" )
You can’t perform that action at this time.
0 commit comments