@@ -23,6 +23,7 @@ import (
23
23
)
24
24
25
25
func TestAccTemplateResource (t * testing.T ) {
26
+ t .Parallel ()
26
27
if os .Getenv ("TF_ACC" ) == "" {
27
28
t .Skip ("Acceptance tests are disabled." )
28
29
}
@@ -637,6 +638,7 @@ func TestAccTemplateResource(t *testing.T) {
637
638
}
638
639
639
640
func TestAccTemplateResourceEnterprise (t * testing.T ) {
641
+ t .Parallel ()
640
642
if os .Getenv ("TF_ACC" ) == "" {
641
643
t .Skip ("Acceptance tests are disabled." )
642
644
}
@@ -782,6 +784,7 @@ func TestAccTemplateResourceEnterprise(t *testing.T) {
782
784
}
783
785
784
786
func TestAccTemplateResourceAGPL (t * testing.T ) {
787
+ t .Parallel ()
785
788
if os .Getenv ("TF_ACC" ) == "" {
786
789
t .Skip ("Acceptance tests are disabled." )
787
790
}
@@ -875,6 +878,7 @@ func TestAccTemplateResourceAGPL(t *testing.T) {
875
878
}
876
879
877
880
func TestAccTemplateResourceVariables (t * testing.T ) {
881
+ t .Parallel ()
878
882
cfg := `
879
883
provider coderd {
880
884
url = %q
@@ -1137,6 +1141,7 @@ func testAccCheckNumTemplateVersions(ctx context.Context, client *codersdk.Clien
1137
1141
}
1138
1142
1139
1143
func TestReconcileVersionIDs (t * testing.T ) {
1144
+ t .Parallel ()
1140
1145
aUUID := uuid .New ()
1141
1146
bUUID := uuid .New ()
1142
1147
cases := []struct {
@@ -1507,6 +1512,8 @@ func TestReconcileVersionIDs(t *testing.T) {
1507
1512
for _ , c := range cases {
1508
1513
c := c
1509
1514
t .Run (c .Name , func (t * testing.T ) {
1515
+ t .Parallel ()
1516
+
1510
1517
diag := c .planVersions .reconcileVersionIDs (c .inputState , c .configVersions , c .cfgHasActiveVersion )
1511
1518
if c .expectError {
1512
1519
require .True (t , diag .HasError ())
0 commit comments