|  | 
| 12 | 12 | ### | 
| 13 | 13 | 
 | 
| 14 | 14 | # 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 | 
| 16 | 16 | 
 | 
| 17 | 17 | # Path to the directory where the WordPress develop checkout can be placed and tests can be run. | 
| 18 | 18 | # 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 | 
| 20 | 20 | 
 | 
| 21 | 21 | # API key to authenticate with the reporting service in 'username:password' format. | 
| 22 |  | -export WPT_REPORT_API_KEY="" | 
|  | 22 | +export WPT_REPORT_API_KEY= | 
| 23 | 23 | 
 | 
| 24 | 24 | # (Optionally) define an alternate reporting URL | 
| 25 |  | -export WPT_REPORT_URL="" | 
|  | 25 | +export WPT_REPORT_URL= | 
| 26 | 26 | 
 | 
| 27 | 27 | # Credentials for a database that can be written to and reset. | 
| 28 | 28 | # WARNING!!! This database will be destroyed between tests. Only use safe database credentials. | 
| 29 | 29 | # 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= | 
| 34 | 34 | 
 | 
| 35 | 35 | # (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_} | 
| 37 | 37 | 
 | 
| 38 | 38 | # (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} | 
| 40 | 40 | 
 | 
| 41 | 41 | # (Optionally) define the PHPUnit command execution call. | 
| 42 | 42 | # Use if `php phpunit.phar` can't be called directly for some reason. | 
| 43 |  | -export WPT_PHPUNIT_CMD="" | 
|  | 43 | +export WPT_PHPUNIT_CMD= | 
| 44 | 44 | 
 | 
| 45 | 45 | # (Optionally) define the command execution to remove the test directory | 
| 46 | 46 | # 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= | 
| 48 | 48 | 
 | 
| 49 | 49 | # SSH connection string (can also be an alias). | 
| 50 | 50 | # Leave empty if tests are meant to run in the same environment. | 
| 51 |  | -export WPT_SSH_CONNECT="" | 
|  | 51 | +export WPT_SSH_CONNECT= | 
| 52 | 52 | 
 | 
| 53 | 53 | # Any options to be passed to the SSH connection | 
| 54 | 54 | # Defaults to '-o StrictHostKeyChecking=no' | 
| 55 |  | -export WPT_SSH_OPTIONS="" | 
|  | 55 | +export WPT_SSH_OPTIONS= | 
| 56 | 56 | 
 | 
| 57 | 57 | # SSH private key, base64 encoded. | 
| 58 |  | -export WPT_SSH_PRIVATE_KEY_BASE64="" | 
|  | 58 | +export WPT_SSH_PRIVATE_KEY_BASE64= | 
| 59 | 59 | 
 | 
| 60 | 60 | # Output logging | 
| 61 | 61 | # Use 'verbose' to increase verbosity | 
| 62 |  | -export WPT_DEBUG="" | 
|  | 62 | +export WPT_DEBUG= | 
| 63 | 63 | 
 | 
| 64 | 64 | # Certificate validation | 
| 65 | 65 | # Use 1 to validate, and 0 to not validate | 
|  | 
0 commit comments