Skip to content

Commit 81e2e67

Browse files
authored
Merge cd6aba5 into 95a6b6d
2 parents 95a6b6d + cd6aba5 commit 81e2e67

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.github/workflows/podman-test.yaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,8 @@ jobs:
2323

2424
- name: Run Integration tests
2525
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

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ GINKGO_FLAGS_ALL = $(GINKGO_TEST_ARGS) --randomize-all --slow-spec-threshold=$(S
5959
GINKGO_FLAGS_AUTO = $(GINKGO_FLAGS_ALL) -p
6060
# Flags for tests that may be run in parallel
6161
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
6464
# Flags for tests that must not be run in parallel
6565
GINKGO_FLAGS_ONE=$(GINKGO_FLAGS_ALL) -nodes=1
6666
# GolangCi version for unit-validate test

0 commit comments

Comments
 (0)