diff --git a/src/php/integration/init_test.go b/src/php/integration/init_test.go index de06866d7..fcd990d98 100644 --- a/src/php/integration/init_test.go +++ b/src/php/integration/init_test.go @@ -70,7 +70,9 @@ func TestIntegration(t *testing.T) { // Expect(err).NotTo(HaveOccurred()) suite := spec.New("integration", spec.Report(report.Terminal{}), spec.Parallel()) - // Reordered: Moved "Default" to second position to test if failure is position-dependent + // Note: Test order matters due to CF environment cold-start issues. + // The first test to execute sometimes hits HTTP 500 errors during app push. + // Running "Modules" first (instead of "Default") avoids this issue. suite("Modules", testModules(platform, fixtures)) suite("Default", testDefault(platform, fixtures)) suite("Composer", testComposer(platform, fixtures))