Skip to content

Commit ffd313d

Browse files
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 <javier@casares.org>
1 parent c3bdc43 commit ffd313d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.env.default

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ export WPT_CERTIFICATE_VALIDATION=1
6868
# WordPress flavor
6969
# 0 = WordPress (simple version)
7070
# 1 = WordPress Multisite
71-
export WPT_FLAVOR=1
71+
export WPT_FLAVOR=0
7272

7373
# Extra tests (groups)
7474
# 0 = none

0 commit comments

Comments
 (0)