@@ -13,6 +13,7 @@ func TestFindImages(t *testing.T) {
13
13
t .Log ("E2E: Find Images" )
14
14
15
15
t .Run ("zarf prepare find-images" , func (t * testing.T ) {
16
+ t .Parallel ()
16
17
// Test `zarf prepare find-images` for a remote asset
17
18
stdOut , stdErr , err := e2e .Zarf ("prepare" , "find-images" , "examples/helm-charts" )
18
19
require .NoError (t , err , stdOut , stdErr )
@@ -24,6 +25,7 @@ func TestFindImages(t *testing.T) {
24
25
})
25
26
26
27
t .Run ("zarf prepare find-images --kube-version" , func (t * testing.T ) {
28
+ t .Parallel ()
27
29
controllerImageWithTag := "quay.io/jetstack/cert-manager-controller:v1.11.1"
28
30
controlImageWithSignature := "quay.io/jetstack/cert-manager-controller:sha256-4f1782c8316f34aae6b9ab823c3e6b7e6e4d92ec5dac21de6a17c3da44c364f1.sig"
29
31
@@ -42,7 +44,7 @@ func TestFindImages(t *testing.T) {
42
44
})
43
45
44
46
t .Run ("zarf dev find-images with helm or manifest vars" , func (t * testing.T ) {
45
-
47
+ t . Parallel ()
46
48
registry := "coolregistry.gov"
47
49
agentTag := "test"
48
50
@@ -60,7 +62,7 @@ func TestFindImages(t *testing.T) {
60
62
})
61
63
62
64
t .Run ("zarf test find images --why w/ helm chart success" , func (t * testing.T ) {
63
-
65
+ t . Parallel ()
64
66
testPackagePath := filepath .Join ("examples" , "wordpress" )
65
67
sets := []
string {
"WORDPRESS_USERNAME=zarf" ,
"WORDPRESS_PASSWORD=fake" ,
"[email protected] " ,
"WORDPRESS_FIRST_NAME=zarf" ,
"WORDPRESS_LAST_NAME=zarf" ,
"WORDPRESS_BLOG_NAME=blog" }
66
68
deploysSet := strings .Join (sets , "," )
@@ -72,7 +74,7 @@ func TestFindImages(t *testing.T) {
72
74
})
73
75
74
76
t .Run ("zarf test find images --why w/ manifests success" , func (t * testing.T ) {
75
-
77
+ t . Parallel ()
76
78
testPackagePath := filepath .Join ("examples" , "manifests" )
77
79
78
80
stdOut , _ , err := e2e .Zarf ("dev" , "find-images" , testPackagePath , "--why" , "httpd:alpine3.18" )
0 commit comments