File tree 2 files changed +7
-4
lines changed 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 23
23
24
24
- name : Run Integration tests
25
25
env :
26
- PODMAN_EXEC_NODES : ${{ vars.PODMAN_TEST_EXEC_NODES }}
27
- run : make test-integration-podman
26
+ PODMAN_EXEC_NODES : ${{ secrets.PODMAN_TEST_EXEC_NODES }}
27
+ run : |
28
+ make test-integration-podman
29
+ podman pod ls --format '{{.Name}}' | xargs -I '{}' podman pod inspect '{}'
30
+ podman pod ls --format '{{.Name}}' | xargs podman pod stop
Original file line number Diff line number Diff line change @@ -59,8 +59,8 @@ GINKGO_FLAGS_ALL = $(GINKGO_TEST_ARGS) --randomize-all --slow-spec-threshold=$(S
59
59
GINKGO_FLAGS_AUTO = $(GINKGO_FLAGS_ALL ) -p
60
60
# Flags for tests that may be run in parallel
61
61
GINKGO_FLAGS =$(GINKGO_FLAGS_ALL ) -nodes=$(TEST_EXEC_NODES )
62
- # Flags for Podman tests that may be run in parallel
63
- GINKGO_FLAGS_PODMAN =$(GINKGO_FLAGS_ALL ) -nodes=$(PODMAN_EXEC_NODES )
62
+ # Flags for Podman tests that may be run in parallel, and not waiting for terminating containers
63
+ GINKGO_FLAGS_PODMAN =$(GINKGO_FLAGS_ALL ) -nodes=$(PODMAN_EXEC_NODES ) --output-interceptor-mode=none
64
64
# Flags for tests that must not be run in parallel
65
65
GINKGO_FLAGS_ONE =$(GINKGO_FLAGS_ALL ) -nodes=1
66
66
# GolangCi version for unit-validate test
You can’t perform that action at this time.
0 commit comments