try running addons test in sequence, since parallel test seems to be failing on virtualbox

pull/6124/head
Priya Wadhwa 2019-12-20 15:53:55 -08:00
parent 6c25cd3848
commit 81a2c1650b
1 changed files with 0 additions and 2 deletions

View File

@ -36,7 +36,6 @@ import (
// TestAddons tests addons that require no special environment -- in parallel
func TestAddons(t *testing.T) {
MaybeParallel(t)
WaitForStartSlot(t)
profile := UniqueProfileName("addons")
ctx, cancel := context.WithTimeout(context.Background(), 40*time.Minute)
@ -61,7 +60,6 @@ func TestAddons(t *testing.T) {
for _, tc := range tests {
tc := tc
t.Run(tc.name, func(t *testing.T) {
MaybeParallel(t)
tc.validator(ctx, t, profile)
})
}