From ffd313d69afcd1a66ee96a48e70606225f2d05e2 Mon Sep 17 00:00:00 2001 From: Jonathan Desrosiers Date: Tue, 19 Aug 2025 14:45:11 -0400 Subject: [PATCH] Change the default value of `WPT_FLAVOR` This changes the default value for `WPT_FLAVOR` in the `.env.default` file from `1` (multisite) to `0` (single site). While receiving test reports from environments running multisite offers additional confirmation, running the tests as a single site is the more appropriate default. The code throughout the repository responsible for handling the `WPT_FLAVOR` environment variable currently uses single site as the fallback when the variable is not set. Co-Authored-By: Javier Casares --- .env.default | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.env.default b/.env.default index 84de84c..9371953 100644 --- a/.env.default +++ b/.env.default @@ -68,7 +68,7 @@ export WPT_CERTIFICATE_VALIDATION=1 # WordPress flavor # 0 = WordPress (simple version) # 1 = WordPress Multisite -export WPT_FLAVOR=1 +export WPT_FLAVOR=0 # Extra tests (groups) # 0 = none