Skip to content

Commit 4263637

Browse files
committed
Remove double quoting of variables.
This will be hanlded in #254 instead.
1 parent 379ddf2 commit 4263637

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

.env.default

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -12,54 +12,54 @@
1212
###
1313

1414
# Path to the directory where files can be prepared before being delivered to the environment.
15-
export WPT_PREPARE_DIR="/tmp/wp-test-runner"
15+
export WPT_PREPARE_DIR=/tmp/wp-test-runner
1616

1717
# Path to the directory where the WordPress develop checkout can be placed and tests can be run.
1818
# When running tests in the same environment, set WPT_TEST_DIR to WPT_PREPARE_DIR
19-
export WPT_TEST_DIR="wp-test-runner"
19+
export WPT_TEST_DIR=wp-test-runner
2020

2121
# API key to authenticate with the reporting service in 'username:password' format.
22-
export WPT_REPORT_API_KEY=""
22+
export WPT_REPORT_API_KEY=
2323

2424
# (Optionally) define an alternate reporting URL
25-
export WPT_REPORT_URL=""
25+
export WPT_REPORT_URL=
2626

2727
# Credentials for a database that can be written to and reset.
2828
# WARNING!!! This database will be destroyed between tests. Only use safe database credentials.
2929
# Please note that you must escape _or_ refrain from using # as special character in your credentials.
30-
export WPT_DB_NAME=""
31-
export WPT_DB_USER=""
32-
export WPT_DB_PASSWORD=""
33-
export WPT_DB_HOST=""
30+
export WPT_DB_NAME=
31+
export WPT_DB_USER=
32+
export WPT_DB_PASSWORD=
33+
export WPT_DB_HOST=
3434

3535
# (Optionally) set a custom table prefix to permit concurrency against the same database.
36-
export WPT_TABLE_PREFIX="${WPT_TABLE_PREFIX-wptests_}"
36+
export WPT_TABLE_PREFIX=${WPT_TABLE_PREFIX-wptests_}
3737

3838
# (Optionally) define the PHP executable to be called
39-
export WPT_PHP_EXECUTABLE="${WPT_PHP_EXECUTABLE-php}"
39+
export WPT_PHP_EXECUTABLE=${WPT_PHP_EXECUTABLE-php}
4040

4141
# (Optionally) define the PHPUnit command execution call.
4242
# Use if `php phpunit.phar` can't be called directly for some reason.
43-
export WPT_PHPUNIT_CMD=""
43+
export WPT_PHPUNIT_CMD=
4444

4545
# (Optionally) define the command execution to remove the test directory
4646
# Use if `rm -r` can't be called directly for some reason.
47-
export WPT_RM_TEST_DIR_CMD=""
47+
export WPT_RM_TEST_DIR_CMD=
4848

4949
# SSH connection string (can also be an alias).
5050
# Leave empty if tests are meant to run in the same environment.
51-
export WPT_SSH_CONNECT=""
51+
export WPT_SSH_CONNECT=
5252

5353
# Any options to be passed to the SSH connection
5454
# Defaults to '-o StrictHostKeyChecking=no'
55-
export WPT_SSH_OPTIONS=""
55+
export WPT_SSH_OPTIONS=
5656

5757
# SSH private key, base64 encoded.
58-
export WPT_SSH_PRIVATE_KEY_BASE64=""
58+
export WPT_SSH_PRIVATE_KEY_BASE64=
5959

6060
# Output logging
6161
# Use 'verbose' to increase verbosity
62-
export WPT_DEBUG=""
62+
export WPT_DEBUG=
6363

6464
# Certificate validation
6565
# Use 1 to validate, and 0 to not validate

0 commit comments

Comments
 (0)