Skip to content

Commit ca9ea51

Browse files
jentingroboquat
authored andcommitted
workspace integration test: add missing PVC feature flag
Signed-off-by: JenTing Hsiao <[email protected]>
1 parent 0a2d6db commit ca9ea51

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

test/tests/components/ws-manager/tasks_test.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,16 +46,19 @@ func TestRegularWorkspaceTasks(t *testing.T) {
4646
Name: "pvc-init",
4747
Task: gitpod.TasksItems{Init: "touch /workspace/gitpod/init-ran; exit"},
4848
LookForFile: "init-ran",
49+
FF: []wsmanapi.WorkspaceFeatureFlag{wsmanapi.WorkspaceFeatureFlag_PERSISTENT_VOLUME_CLAIM},
4950
},
5051
{
5152
Name: "pvc-before",
5253
Task: gitpod.TasksItems{Before: "touch /workspace/gitpod/before-ran; exit"},
5354
LookForFile: "before-ran",
55+
FF: []wsmanapi.WorkspaceFeatureFlag{wsmanapi.WorkspaceFeatureFlag_PERSISTENT_VOLUME_CLAIM},
5456
},
5557
{
5658
Name: "pvc-command",
5759
Task: gitpod.TasksItems{Command: "touch /workspace/gitpod/command-ran; exit"},
5860
LookForFile: "command-ran",
61+
FF: []wsmanapi.WorkspaceFeatureFlag{wsmanapi.WorkspaceFeatureFlag_PERSISTENT_VOLUME_CLAIM},
5962
},
6063
}
6164

0 commit comments

Comments
 (0)