From bbe2f27015c7d1d5cfb3b9405f8af542b60d7a1b Mon Sep 17 00:00:00 2001 From: Nayden Petrov Date: Wed, 9 Sep 2026 14:38:25 +0300 Subject: [PATCH] acceptance: run ssh and up_and_down specs serially Both specs perform a full 'bbl up' (terraform apply + bosh create-env for jumpbox and director). Under ginkgo -p they ran concurrently, causing two director bootstraps to race on the same worker and GCP project. This drove recurring flakiness: EOF on the director agent mbus endpoint from resource contention, and 'tar: No such file' errors from a shared ~/.bosh/downloads cache. Marking both containers Serial ensures they run one at a time on process 1, never overlapping each other or other specs, while lighter specs still run in parallel. --- acceptance-tests/bbl/ssh_linux_test.go | 2 +- acceptance-tests/bbl/up_and_down_test.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/acceptance-tests/bbl/ssh_linux_test.go b/acceptance-tests/bbl/ssh_linux_test.go index 9b763603f..92a1f7b6d 100644 --- a/acceptance-tests/bbl/ssh_linux_test.go +++ b/acceptance-tests/bbl/ssh_linux_test.go @@ -12,7 +12,7 @@ import ( "github.com/onsi/gomega/gexec" ) -var _ = Describe("ssh", func() { +var _ = Describe("ssh", Serial, func() { var ( bbl actors.BBL diff --git a/acceptance-tests/bbl/up_and_down_test.go b/acceptance-tests/bbl/up_and_down_test.go index 8b4a9ce81..1a76eb887 100644 --- a/acceptance-tests/bbl/up_and_down_test.go +++ b/acceptance-tests/bbl/up_and_down_test.go @@ -11,7 +11,7 @@ import ( "github.com/onsi/gomega/gexec" ) -var _ = Describe("up_and_down", func() { +var _ = Describe("up_and_down", Serial, func() { var ( bbl actors.BBL boshcli actors.BOSHCLI