@@ -7,6 +7,8 @@ load helpers
77load helpers_tui
88
99@test " pod create (resource)" {
10+ check_skip " pod_create_resource"
11+
1012 podman pod rm -f $TEST_POD_NAME || echo done
1113 podman image pull pause:3.5 || echo done
1214
@@ -38,6 +40,8 @@ load helpers_tui
3840}
3941
4042@test " pod create (networking, security)" {
43+ check_skip " pod_create_networking"
44+
4145 podman pod rm -f $TEST_POD_NAME || echo done
4246 podman network rm $TEST_POD_NETWORK_NAME || echo done
4347 podman image pull pause:3.5 || echo done
@@ -76,6 +80,8 @@ load helpers_tui
7680}
7781
7882@test " pod start" {
83+ check_skip " pod_start"
84+
7985 # switch to pods view
8086 # select test pod from list
8187 # select start command from pod commands dialog
@@ -89,6 +95,8 @@ load helpers_tui
8995}
9096
9197@test " pod pause" {
98+ check_skip " pod_pause"
99+
92100 # switch to pods view
93101 # select test pod from list
94102 # select pause command from pod commands dialog
@@ -102,6 +110,8 @@ load helpers_tui
102110}
103111
104112@test " pod unpause" {
113+ check_skip " pod_unpause"
114+
105115 # switch to pods view
106116 # select test pod from list
107117 # select unpause command from pod commands dialog
@@ -115,6 +125,8 @@ load helpers_tui
115125}
116126
117127@test " pod stop" {
128+ check_skip " pod_stop"
129+
118130 # switch to pods view
119131 # select test pod from list
120132 # select stop command from pod commands dialog
@@ -128,6 +140,8 @@ load helpers_tui
128140}
129141
130142@test " pod restart" {
143+ check_skip " pod_restart"
144+
131145 # switch to pods view
132146 # select test pod from list
133147 # select restart command from pod commands dialog
@@ -141,6 +155,8 @@ load helpers_tui
141155}
142156
143157@test " pod kill" {
158+ check_skip " pod_kill"
159+
144160 # switch to pods view
145161 # select test pod from list
146162 # select kill command from pod commands dialog
@@ -154,6 +170,8 @@ load helpers_tui
154170}
155171
156172@test " pod inspect" {
173+ check_skip " pod_inspect"
174+
157175 # switch to pods view
158176 # select test pod from list
159177 # select inspect command from pod commands dialog
@@ -169,6 +187,8 @@ load helpers_tui
169187}
170188
171189@test " pod remove" {
190+ check_skip " pod_remove"
191+
172192 # switch to pods view
173193 # select test pod from list
174194 # select remove command from pod commands dialog
@@ -185,6 +205,8 @@ load helpers_tui
185205}
186206
187207@test " pod prune" {
208+ check_skip " pod_prune"
209+
188210 podman pod create --name $TEST_POD_NAME --label $TEST_LABEL || echo done
189211 podman pod start $TEST_POD_NAME || echo done
190212 podman pod stop $TEST_POD_NAME || echo done
0 commit comments