We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d9ce15 commit a9cf944Copy full SHA for a9cf944
frankenphp_test.go
@@ -672,11 +672,12 @@ func TestFailingWorker(t *testing.T) {
672
}
673
674
func TestEnv(t *testing.T) {
675
- testEnv(t, &testOptions{})
+ testEnv(t, &testOptions{nbParallelRequests:1})
676
677
func TestEnvWorker(t *testing.T) {
678
- testEnv(t, &testOptions{workerScript: "env/test-env.php"})
+ testEnv(t, &testOptions{nbParallelRequests:1, workerScript: "env/test-env.php"})
679
680
+// testEnv cannot be run in parallel due to https://github.com/golang/go/issues/63567
681
func testEnv(t *testing.T, opts *testOptions) {
682
assert.NoError(t, os.Setenv("EMPTY", ""))
683
0 commit comments