Make WordPress Core

Changeset 47337


Ignore:
Timestamp:
02/21/2020 10:46:53 AM (5 years ago)
Author:
SergeyBiryukov
Message:

Build/Test Tools: Display PHPUnit information for PHP tests only (for 5.1 branch).

This avoids a build error on travis:format job, caused by Travis running PHPUnit 9.x by default, which requires PHP 7.3+.

Merges [47336] to the 5.1 branch.
See #49485.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/5.1/.travis.yml

    r47322 r47337  
    9898- npm --version
    9999- node --version
    100 - which phpunit
    101 - phpunit --version
     100- |
     101  # Display PHPUnit information (for PHP tests only).
     102  if [[ "$WP_TRAVISCI" == "travis:phpunit" ]]; then
     103    which phpunit
     104    phpunit --version
     105  fi
    102106- curl --version
    103107- grunt --version
Note: See TracChangeset for help on using the changeset viewer.