Make WordPress Core


Ignore:
Timestamp:
10/28/2020 11:15:07 PM (5 years ago)
Author:
desrosj
Message:

Build/Test Tools: Allow the desired version of PHPUnit to be passed to the local Docker environment.

This reintroduces [49358] with a modification to the .travis.yml file to avoid an issue with dotenv-expand being unable to expand variables into process.env only on Travis.

The LOCAL_PHPUNIT environment variabl allows the desired version of PHPUnit to be specified when running the PHP tests within the local Docker environment.

Because support for newer versions of PHPUnit is not backported, some versions of PHP need the ability to run multiple versions of PHPUnit for different branches. This adds the flexibility needed to use the Docker environment within those older branches to run the PHP tests.

Props johnbillion, SergeyBiryukov.
See #50042.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/package-lock.json

    r49360 r49362  
    91369136        },
    91379137        "dotenv": {
    9138             "version": "8.1.0",
    9139             "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-8.1.0.tgz",
    9140             "integrity": "sha512-GUE3gqcDCaMltj2++g6bRQ5rBJWtkWTmqmD0fo1RnnMuUqHNCt2oTPeDnS9n6fKYvlhn7AeBkb38lymBtWBQdA==",
     9138            "version": "8.2.0",
     9139            "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-8.2.0.tgz",
     9140            "integrity": "sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw==",
    91419141            "dev": true
    91429142        },
     
    2520225202            },
    2520325203            "dependencies": {
     25204                "base64-js": {
     25205                    "version": "1.3.1",
     25206                    "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.3.1.tgz",
     25207                    "integrity": "sha512-mLQ4i2QO1ytvGWFWmcngKO//JXAQueZvwEKtjgQFM4jIK0kU+ytMfplL8j+n5mspOfjHwoAg+9yhb7BwAHm36g==",
     25208                    "dev": true
     25209                },
    2520425210                "bl": {
    2520525211                    "version": "4.0.3",
     
    2521425220                },
    2521525221                "buffer": {
    25216                     "version": "5.6.0",
    25217                     "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.6.0.tgz",
    25218                     "integrity": "sha512-/gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw==",
    25219                     "dev": true,
    25220                     "requires": {
    25221                         "base64-js": "^1.0.2",
    25222                         "ieee754": "^1.1.4"
     25222                    "version": "5.7.0",
     25223                    "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.0.tgz",
     25224                    "integrity": "sha512-cd+5r1VLBwUqTrmnzW+D7ABkJUM6mr7uv1dv+6jRw4Rcl7tFIFHDqHPL98LhpGFn3dbAt3gtLxtrWp4m1kFrqg==",
     25225                    "dev": true,
     25226                    "requires": {
     25227                        "base64-js": "^1.3.1",
     25228                        "ieee754": "^1.1.13"
    2522325229                    }
    2522425230                },
Note: See TracChangeset for help on using the changeset viewer.